Method |
Description |
|
GetFetchRequests ( ) |
|
|
GetHits ( ) |
|
|
GetMissKeys ( ) |
|
|
GetStoreRequests ( ) |
fn genKey |
|
IsEnabled ( $p_cacheEngine = null ) : boolean |
Returns true if the given cache engine was enabled |
|
IsSupported ( $p_cacheEngine = null ) : boolean |
Returns true if the given cache engine was supported |
|
add ( $p_key, $p_data, $p_ttl ) : boolean |
Alias for the store() method. |
|
clear ( $p_type = null ) : boolean |
Clears the cache. |
|
delete ( $p_key ) : boolean |
Remove the object with given cache key from cache. |
|
fetch ( $p_key ) : mixed |
Fetch an object from cache. |
|
info ( $p_type = null ) : mixed |
Retrieves cache information and metadata from the cache store. |
|
initialized ( ) |
fn __construct |
|
meminfo ( ) : mixed |
Retrieves shared memory allocation information. |
|
singleton ( ) : CampCache |
Singleton function that returns the global class object. |
|
store ( $p_key, $p_data, $p_ttl ) : boolean |
Store the given data into cache. |
|