Joomla Platform
13.1
Documentation des API du framework Joomla Platform
|
Fonctions membres publiques | |
get ($id, $group, $checkTime=true) | |
getAll () | |
store ($id, $group, $data) | |
remove ($id, $group) | |
clean ($group, $mode=null) | |
gc () | |
lock ($id, $group, $locktime) | |
unlock ($id, $group=null) | |
Fonctions membres publiques inherited from JCacheStorage | |
__construct ($options=array()) |
Fonctions membres publiques statiques | |
static | isSupported () |
Fonctions membres publiques statiques inherited from JCacheStorage | |
static | getInstance ($handler=null, $options=array()) |
static | test () |
static | addIncludePath ($path= '') |
Additional Inherited Members | |
Attributs publics inherited from JCacheStorage | |
$_now | |
$_lifetime | |
$_locking | |
$_language | |
$_application | |
$_hash | |
Fonctions membres protégées inherited from JCacheStorage | |
_getCacheId ($id, $group) | |
Attributs protégés inherited from JCacheStorage | |
$rawname |
JCacheStorageApc::clean | ( | $group, | |
$mode = null |
|||
) |
Clean cache for a group given a mode.
group mode : cleans all cache in the group notgroup mode : cleans all cache not in the group
string | $group | The cache data group |
string | $mode | The mode for cleaning cache [group|notgroup] |
Réimplémentée à partir de JCacheStorage.
Définition à la ligne 130 du fichier apc.php.
JCacheStorageApc::gc | ( | ) |
Force garbage collect expired cache data as items are removed only on fetch!
Réimplémentée à partir de JCacheStorage.
Définition à la ligne 154 du fichier apc.php.
JCacheStorageApc::get | ( | $id, | |
$group, | |||
$checkTime = true |
|||
) |
Get cached data from APC by id and group
string | $id | The cache data id |
string | $group | The cache data group |
boolean | $checkTime | True to verify cache time expiration threshold |
Réimplémentée à partir de JCacheStorage.
JCacheStorageApc::getAll | ( | ) |
Get all cached data
Réimplémentée à partir de JCacheStorage.
Définition à la ligne 46 du fichier apc.php.
|
static |
Test to see if the cache storage is available.
Réimplémentée à partir de JCacheStorage.
Définition à la ligne 176 du fichier apc.php.
JCacheStorageApc::lock | ( | $id, | |
$group, | |||
$locktime | |||
) |
Lock cached item - override parent as this is more efficient
string | $id | The cache data id |
string | $group | The cache data group |
integer | $locktime | Cached item max lock time |
Réimplémentée à partir de JCacheStorage.
Définition à la ligne 192 du fichier apc.php.
JCacheStorageApc::remove | ( | $id, | |
$group | |||
) |
Remove a cached data entry by id and group
string | $id | The cache data id |
string | $group | The cache data group |
Réimplémentée à partir de JCacheStorage.
JCacheStorageApc::store | ( | $id, | |
$group, | |||
$data | |||
) |
Store the data to APC by id and group
string | $id | The cache data id |
string | $group | The cache data group |
string | $data | The data to store in cache |
Réimplémentée à partir de JCacheStorage.
Définition à la ligne 95 du fichier apc.php.
JCacheStorageApc::unlock | ( | $id, | |
$group = null |
|||
) |
Unlock cached item - override parent for cacheid compatibility with lock
string | $id | The cache data id |
string | $group | The cache data group |
Réimplémentée à partir de JCacheStorage.
Définition à la ligne 241 du fichier apc.php.