Interface ICacheStorage (namespace Nette\Caching)
Cache storage.
Public Method Summary | |
---|---|
void |
clean
($conds)
Removes items from the cache by conditions.
|
mixed|NULL |
read
(string $key)
Read from cache.
|
void |
remove
(string $key)
Removes item from the cache.
|
void |
write
(string $key, mixed $data, $dependencies)
Writes item into the cache.
|
Method Details | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
line 52 cleanpublic void clean ($conds) Removes items from the cache by conditions.
|
||||||||||||
line 29 readpublic mixed|NULL read (string $key) Read from cache.
|
||||||||||||
line 45 removepublic void remove (string $key) Removes item from the cache.
|
||||||||||||
line 38 writepublic void write (string $key, mixed $data, $dependencies) Writes item into the cache.
|