SproutCMS

This is the code documentation for the SproutCMS project

class Eaccelerator

Eaccelerator-based Cache driver.

Source code (1 result)

/sprout/Helpers/Drivers/Cache/Eaccelerator.php   Highlighted file source

Line 25: * Eaccelerator-based Cache driver.
Line 27: class Eaccelerator implements CacheDriver
Line 32: if ( ! extension_loaded('eaccelerator'))
Line 33: throw new Kohana_Exception('cache.extension_not_loaded', 'eaccelerator');
Line 38: return eaccelerator_get($id);
Line 43: Kohana::log('error', 'tags are unsupported by the eAccelerator driver');
Line 52: Kohana::log('error', 'tags are unsupported by the eAccelerator driver');
Line 55: return eaccelerator_put($id, $data, $lifetime);
Line 62: Kohana::log('error', 'tags are unsupported by the eAccelerator driver');
Line 67: return eaccelerator_clean();
Line 71: return eaccelerator_rm($id);
Line 77: eaccelerator_gc();
Line 82: } // End Cache eAccelerator Driver

A total of 13 lines in 1 file was found