Method |
Description |
|
__construct ( Illuminate\Cache\Repository $laravelCache, Serializer $serializer ) |
Injects the dependencies of LaravelCacheComponent |
|
get ( string $key ) : mixed |
Retrieve an item from the cache by key. |
|
has ( string $key ) : boolean |
Determine if an item exists in the cache. This method will also check
if the ttl of the given cache key has been expired and will free the
memory if so. |
|
put ( string $key, mixed $value, float $minutes ) : void |
Store an item in the cache for a given number of minutes. |
|