Interface ICacheStorage
NCache storage.
public
mixed|NULL
|
#
read(
string
$key
)
Read from cache. Read from cache. Parameters$key string key |
public
void
|
#
write(
string
$key,
mixed
$data,
array
$dependencies
)
Writes item into the cache. Writes item into the cache. Parameters$key string key$data mixed data$dependencies array dependencies |
public
void
|
#
remove(
string
$key
)
Removes item from the cache. Removes item from the cache. Parameters$key string key |
public
void
|
#
clean(
array
$conds
)
Removes items from the cache by conditions. Removes items from the cache by conditions. Parameters$conds array conditions |