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