DevNullStorage
class DevNullStorage implements Storage
Cache dummy storage.
Methods
mixed
read(string $key)
Read from cache.
void
lock(string $key)
Prevents item reading and writing. Lock is released by write() or remove().
void
write(string $key, $data, array $dependencies)
Writes item into the cache.
void
remove(string $key)
Removes item from the cache.
void
clean(array $conditions)
Removes items from the cache by conditions.
Details
at line 20
mixed
read(string $key)
Read from cache.
at line 26
void
lock(string $key)
Prevents item reading and writing. Lock is released by write() or remove().
at line 31
void
write(string $key, $data, array $dependencies)
Writes item into the cache.
at line 36
void
remove(string $key)
Removes item from the cache.
at line 41
void
clean(array $conditions)
Removes items from the cache by conditions.