PHP 클래스 lithium\storage\cache\adapter\Apc

The APC cache adapter is meant to be used through the Cache interface, which abstracts away key generation, adapter instantiation and filter implementation. A simple configuration of this adapter can be accomplished in config/bootstrap/cache.php as follows: {{{ Cache::config(array( 'cache-config-name' => array('adapter' => 'Apc') )); }}} This APC adapter provides basic support for write, read, delete and clear cache functionality, as well as allowing the first four methods to be filtered as per the Lithium filtering system. Additionally, This adapter defines several methods that are _not_ implemented in other adapters, and are thus non-portable - see the documentation for Cache as to how these methods should be accessed. This adapter supports multi-key write, read and delete operations. Learn more about APC in the PHP APC manual.
또한 보기: lithium\storage\Cache::key()
상속: extends lithium\core\Object
파일 보기 프로젝트 열기: unionofrad/lithium 1 사용 예제들

공개 메소드들

메소드 설명
__construct ( array $config = [] ) : void Constructor.
clear ( ) : boolean Clears entire user-space cache by flushing it. All cache keys using the configuration but *without* honoring the scope are removed.
decrement ( string $key, integer $offset = 1 ) : integer | boolean Performs an atomic decrement operation on specified numeric cache item.
delete ( array $keys ) : boolean Will attempt to remove specified keys from the user space cache.
enabled ( ) : boolean Determines if the APC extension has been installed and if the userspace cache is available.
increment ( string $key, integer $offset = 1 ) : integer | boolean Performs an atomic increment operation on specified numeric cache item.
read ( array $keys ) : array Read values from the cache. Will attempt to return an array of data containing key/value pairs of the requested data.
write ( array $keys, string | integer $expiry = null ) : boolean Write values to the cache. All items to be cached will receive an expiration time of $expiry.

메소드 상세

__construct() 공개 메소드

Constructor.
또한 보기: lithium\storage\Cache::config()
public __construct ( array $config = [] ) : void
$config array Configuration for this cache adapter. These settings are queryable through `Cache::config('name')`. The available options are as follows: - `'scope'` _string_: Scope which will prefix keys; per default not set. - `'expiry'` _mixed_: The default expiration time for cache values, if no value is otherwise set. Can be either a `strtotime()` compatible tring or TTL in seconds. To indicate items should not expire use `Cache::PERSIST`. Defaults to `+1 hour`.
리턴 void

clear() 공개 메소드

The behavior and result when removing a single key during this process fails is unknown.
public clear ( ) : boolean
리턴 boolean `true` on successful clearing, `false` otherwise.

decrement() 공개 메소드

Note that, as per the APC specification: If the item's value is not numeric, the decrement operation has no effect on the key - it retains its original non-integer value.
public decrement ( string $key, integer $offset = 1 ) : integer | boolean
$key string Key of numeric cache item to decrement.
$offset integer Offset to decrement - defaults to `1`.
리턴 integer | boolean The item's new value on successful decrement, else `false`.

delete() 공개 메소드

Will attempt to remove specified keys from the user space cache.
public delete ( array $keys ) : boolean
$keys array Keys to uniquely identify the cached items.
리턴 boolean `true` on successful delete, `false` otherwise.

enabled() 공개 정적인 메소드

Determines if the APC extension has been installed and if the userspace cache is available.
public static enabled ( ) : boolean
리턴 boolean `true` if enabled, `false` otherwise.

increment() 공개 메소드

Note that, as per the APC specification: If the item's value is not numeric, the increment operation has no effect on the key - it retains its original non-integer value.
public increment ( string $key, integer $offset = 1 ) : integer | boolean
$key string Key of numeric cache item to increment.
$offset integer Offset to increment - defaults to `1`.
리턴 integer | boolean The item's new value on successful increment, else `false`.

read() 공개 메소드

Read values from the cache. Will attempt to return an array of data containing key/value pairs of the requested data.
public read ( array $keys ) : array
$keys array Keys to uniquely identify the cached items.
리턴 array Cached values keyed by cache keys on successful read, keys which could not be read will not be included in the results array.

write() 공개 메소드

Write values to the cache. All items to be cached will receive an expiration time of $expiry.
public write ( array $keys, string | integer $expiry = null ) : boolean
$keys array Key/value pairs with keys to uniquely identify the to-be-cached item.
$expiry string | integer A `strtotime()` compatible cache time or TTL in seconds. To persist an item use `\lithium\storage\Cache::PERSIST`.
리턴 boolean `true` on successful write, `false` otherwise.