Extends
lithium\core\Object
The File adapter does not provide any facilities for atomic decrementing
of cache items. If you need this functionality, please use a cache adapter
which provides native support for atomic decrement.
This method is not implemented, and will simply return false.
Parameters
- string $key Key of numeric cache item to decrement
- integer $offset Offset to increment - defaults to 1.
Returns
boolean False - this method is not implementedSource
public function decrement($key, $offset = 1) {
return false;
}