apcu_clear_cache

(PECL apcu >= 4.0.0) Clears the APCu cache bool apcu_clear_cache ( void ) Clears the cache. Returns: Returns TRUE always See also: apcu_cache_info() -

apcu_cas

(PECL apcu >= 4.0.0) Updates an old value with a new value bool apcu_cas ( string $key, int $old, int $new ) apcu_cas() updates an already existing integer value if the old parameter matches the currently stored value with the value of the new parameter. Parameters: key The key of the value being updated. old The old value (the value

apcu_cache_info

(PECL apcu >= 4.0.0) Retrieves cached information from APCu's data store array apcu_cache_info ([ bool $limited = false ] ) Retrieves cached information and meta-data from APC's data store. Parameters: limited If limited is TRUE, the return value will exclude the individual list of cache entries. This is useful when trying to optimize calls for statistics gathering.

apcu_add

(PECL apcu >= 4.0.0) Cache a new variable in the data store bool apcu_add ( string $key, mixed $var [, int $ttl = 0 ] ) array apcu_add ( array $values [, mixed $unused = NULL [, int $ttl = 0 ]] ) Caches a variable in the data store, only if it's not already stored. Note: Unlike many other mechanisms in PHP, variables stored using apcu_add() will persist between requests (until the value is removed from the cache).

APCIterator::valid

(PECL apc >= 3.1.1) Checks if current position is valid public void APCIterator::valid ( void ) Checks if the current iterator position is valid. Returns: Returns TRUE if the current iterator position is valid, otherwise FALSE. See also: APCIterator::current() - Iterator::valid() -

APCIterator::rewind

(PECL apc >= 3.1.1) Rewinds iterator public void APCIterator::rewind ( void ) Rewinds back the iterator to the first element. Returns: No value is returned. See also: APCIterator::next() - Iterator::next() -

APCIterator::next

(PECL apc >= 3.1.1) Move pointer to next item public void APCIterator::next ( void ) Moves the iterator pointer to the next element. Returns: Returns TRUE on success or FALSE on failure. See also: APCIterator::current() - APCIterator::rewind() - Iterator:

APCIterator::key

(PECL apc >= 3.1.1) Get iterator key public string APCIterator::key ( void ) Gets the current iterator key. Returns: Returns the key on success, or FALSE upon failure. See also: APCIterator::current() - Iterator::key() -

APCIterator::getTotalSize

(PECL apc >= 3.1.1) Get total cache size public int APCIterator::getTotalSize ( void ) Gets the total cache size. Returns: The total cache size. This function is currently not documented; only its argument list is available. See also: APCIterator::getTotalCount() -

APCIterator::getTotalHits

(PECL apc >= 3.1.1) Get total cache hits public int APCIterator::getTotalHits ( void ) Gets the total number of cache hits. Returns: The number of hits on success, or FALSE on failure. This function is currently not documented; only its argument list is available. See also: