Modules

Cache_Arithmetic
extends Kohana_Cache_Arithmetic

Implements: Kohana_Cache_Arithmetic

Kohana Cache Arithmetic Interface, for basic cache integer based arithmetic, addition and subtraction

package
Kohana/Cache
category
Base
author
Kohana Team
copyright
© 2009-2012 Kohana Team
license
http://kohanaphp.com/license
since
3.2.0

Class declared in MODPATH/cache/classes/cache/arithmetic.php on line 3.

Constants

  • None

Properties

  • None

Methods

abstract public decrement( string $id [, int $step = integer 1 ] ) (defined in Kohana_Cache_Arithmetic)

Decrements a given value by the step value supplied. Useful for shared counters and other persistent integer based tracking.

Parameters

  • string $id required - Id of cache entry to decrement
  • int $step = integer 1 - Step value to decrement by

Return Values

  • integer
  • boolean

Source Code

public function decrement($id, $step = 1);

abstract public increment( string $id [, int $step = integer 1 ] ) (defined in Kohana_Cache_Arithmetic)

Increments a given value by the step value supplied. Useful for shared counters and other persistent integer based tracking.

Parameters

  • string $id required - Id of cache entry to increment
  • int $step = integer 1 - Step value to increment by

Return Values

  • integer
  • boolean

Source Code

public function increment($id, $step = 1);