Метод |
Описание |
|
clear ( string $commandKey, string $cacheKey ) |
Clears the cache for a given cacheKey, for a given commandKey |
|
clearAll ( string $commandKey ) |
Clears the cache for a given commandKey only |
|
exists ( string $commandKey, string $cacheKey ) : boolean |
Returns true, if specified cache key exists |
|
get ( string $commandKey, string $cacheKey ) : mixed | null |
Attempts to obtain cached result for a given command type |
|
put ( string $commandKey, string $cacheKey, mixed $result ) |
Puts request result into cache for a given command type |
|