XOOPS API 2.5.11 Beta1
UI v0.5
Réalisé par monxoops.fr
|
Fonctions membres publiques | |
init ($settings=array()) | |
write ($key, $value, $duration=null) | |
read ($key) | |
delete ($key) | |
clear ($check=null) | |
Fonctions membres publiques hérités de XoopsCacheEngine | |
gc () | |
settings () | |
Membres hérités additionnels | |
Champs de données hérités de XoopsCacheEngine | |
$settings | |
clear | ( | $check = null | ) |
Delete all keys from the cache
Réimplémentée à partir de XoopsCacheEngine.
delete | ( | $key | ) |
Delete a key from the cache
string | $key | Identifier for the data |
Réimplémentée à partir de XoopsCacheEngine.
init | ( | $settings = array() | ) |
Initialize the Cache Engine
Called automatically by the cache frontend To reinitialize the settings call Cache::engine('EngineName', [optional] settings = array());
array | $settings | array of setting for the engine |
Réimplémentée à partir de XoopsCacheEngine.
read | ( | $key | ) |
Read a key from the cache
string | $key | Identifier for the data |
Réimplémentée à partir de XoopsCacheEngine.
write | ( | $key, | |
$value, | |||
$duration = null |
|||
) |
Write data for key into cache
string | $key | Identifier for the data |
mixed | $value | Data to be cached |
integer | $duration | How long to cache the data, in seconds |
Réimplémentée à partir de XoopsCacheEngine.