Interface ICacheStorage (namespace Nette\Caching)
Cache storage.
| 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 63 cleanpublic bool clean ($conds) Removes items from the cache by conditions.
|
||||||||||||||||||
|
line 40 readpublic mixed|NULL read (string $key) Read from cache.
|
||||||||||||||||||
|
line 56 removepublic bool remove (string $key) Removes item from the cache.
|
||||||||||||||||||
|
line 49 writepublic bool write (string $key, mixed $data, $dependencies) Writes item into the cache.
|
||||||||||||||||||