Kohana Cache Arithmetic Interface, for basic cache integer based arithmetic, addition and subtraction
Class declared in MODPATH/cache/classes/kohana/cache/arithmetic.php on line 13.
Decrements a given value by the step value supplied. Useful for shared counters and other persistent integer based tracking.
string
$id
required - Id of cache entry to decrementint
$step
= integer 1 - Step value to decrement byinteger
boolean
public function decrement($id, $step = 1);
Increments a given value by the step value supplied. Useful for shared counters and other persistent integer based tracking.
string
$id
required - Id of cache entry to incrementint
$step
= integer 1 - Step value to increment byinteger
boolean
public function increment($id, $step = 1);