FileStore
class FileStore implements Store
Traits
Properties
protected Filesystem | $files | The Illuminate Filesystem instance. |
|
protected string | $directory | The file cache directory. |
Methods
Store multiple items in the cache for a given number of minutes.
Retrieve an item from the cache by key.
Store an item in the cache for a given number of minutes.
Create the file cache directory if necessary.
Increment the value of an item in the cache.
Decrement the value of an item in the cache.
Store an item in the cache indefinitely.
Remove an item from the cache.
Remove all items from the cache.
Retrieve an item and expiry time from the cache by key.
Get a default empty payload for the cache.
Get the full path for the given cache key.
Get the expiration time based on the given minutes.
Get the Filesystem instance.
Get the working directory of the cache.
Get the cache key prefix.
Details
in
RetrievesMultipleKeys at line 15
array
many(array $keys)
Retrieve multiple items from the cache by key.
Items not found in the cache will have a null value.
in
RetrievesMultipleKeys at line 33
void
putMany(array $values, float|int $minutes)
Store multiple items in the cache for a given number of minutes.
at line 36
void
__construct(Filesystem $files, string $directory)
Create a new file cache store instance.
at line 48
mixed
get(string|array $key)
Retrieve an item from the cache by key.
at line 61
void
put(string $key, mixed $value, float|int $minutes)
Store an item in the cache for a given number of minutes.
at line 76
protected void
ensureCacheDirectoryExists(string $path)
Create the file cache directory if necessary.
at line 90
int|bool
increment(string $key, mixed $value = 1)
Increment the value of an item in the cache.
at line 106
int|bool
decrement(string $key, mixed $value = 1)
Decrement the value of an item in the cache.
at line 118
void
forever(string $key, mixed $value)
Store an item in the cache indefinitely.
at line 129
bool
forget(string $key)
Remove an item from the cache.
at line 143
bool
flush()
Remove all items from the cache.
at line 164
protected array
getPayload(string $key)
Retrieve an item and expiry time from the cache by key.
at line 203
protected array
emptyPayload()
Get a default empty payload for the cache.
at line 214
protected string
path(string $key)
Get the full path for the given cache key.
at line 227
protected int
expiration(float|int $minutes)
Get the expiration time based on the given minutes.
at line 239
Filesystem
getFilesystem()
Get the Filesystem instance.
at line 249
string
getDirectory()
Get the working directory of the cache.
at line 259
string
getPrefix()
Get the cache key prefix.