Method |
Description |
|
__construct ( $prefix = '' ) |
|
|
appendLocale ( $key ) |
|
|
decrement ( string $key, mixed $value = 1 ) |
Increment the value of an item in the cache. |
|
flush ( $all = false ) |
Remove all items from the cache. |
|
forever ( string $key, mixed $value ) |
Store an item in the cache indefinitely. |
|
forget ( string $key ) |
Remove an item from the cache. |
|
forgetTags ( string $string ) |
Remove an item from the cache by tags. |
|
get ( string $key ) : mixed |
Retrieve an item from the cache by key. |
|
getDirectory ( ) : string |
Get the working directory of the cache. |
|
getFilesystem ( ) : Illuminate\Filesystem\Filesystem |
Get the Filesystem instance. |
|
getPrefix ( ) : string |
Get the cache key prefix. |
|
increment ( string $key, mixed $value = 1 ) |
Increment the value of an item in the cache. |
|
mkdir_recursive ( $pathname ) |
|
|
normalize_path ( $path, $slash_it = true ) |
|
|
put ( string $key, mixed $value, integer $minutes ) |
Store an item in the cache for a given number of minutes. |
|
reduce_double_slashes ( $str ) |
|
|
remember ( string $key, DateTime | integer $minutes, Closure $callback ) : mixed |
Get an item from the cache, or store the default value. |
|
rememberForever ( string $key, Closure $callback ) : mixed |
Get an item from the cache, or store the default value forever. |
|
rmdir ( $directory, $empty = true ) |
|
|
tags ( $tags ) : object |
Tags for cache. |
|