FileStore

class FileStore implements StoreInterface (View source)

Properties

protected Filesystem $files The Illuminate Filesystem instance.
protected string $directory The file cache directory

Methods

void __construct(Filesystem $files, string $directory)

Create a new file cache store instance.

mixed get(string $key)

Retrieve an item from the cache by key.

array getPayload(string $key)

Retrieve an item and expiry time from the cache by key.

void put(string $key, mixed $value, int $minutes)

Store an item in the cache for a given number of minutes.

void createCacheDirectory(string $path)

Create the file cache directory if necessary.

int|bool increment(string $key, mixed $value = 1)

Increment the value of an item in the cache.

int|bool decrement(string $key, mixed $value = 1)

Decrement the value of an item in the cache.

void forever(string $key, mixed $value)

Store an item in the cache indefinitely.

void forget(string $key)

Remove an item from the cache.

void flush()

Remove all items from the cache.

string path(string $key)

Get the full path for the given cache key.

int expiration(int $minutes)

Get the expiration time based on the given minutes.

Filesystem getFilesystem()

Get the Filesystem instance.

string getDirectory()

Get the working directory of the cache.

string getPrefix()

Get the cache key prefix.

Details

void __construct(Filesystem $files, string $directory)

Create a new file cache store instance.

Parameters

Filesystem $files
string $directory

Return Value

void

mixed get(string $key)

Retrieve an item from the cache by key.

Parameters

string $key

Return Value

mixed

protected array getPayload(string $key)

Retrieve an item and expiry time from the cache by key.

Parameters

string $key

Return Value

array

void put(string $key, mixed $value, int $minutes)

Store an item in the cache for a given number of minutes.

Parameters

string $key
mixed $value
int $minutes

Return Value

void

protected void createCacheDirectory(string $path)

Create the file cache directory if necessary.

Parameters

string $path

Return Value

void

int|bool increment(string $key, mixed $value = 1)

Increment the value of an item in the cache.

Parameters

string $key
mixed $value

Return Value

int|bool

int|bool decrement(string $key, mixed $value = 1)

Decrement the value of an item in the cache.

Parameters

string $key
mixed $value

Return Value

int|bool

void forever(string $key, mixed $value)

Store an item in the cache indefinitely.

Parameters

string $key
mixed $value

Return Value

void

void forget(string $key)

Remove an item from the cache.

Parameters

string $key

Return Value

void

void flush()

Remove all items from the cache.

Return Value

void

protected string path(string $key)

Get the full path for the given cache key.

Parameters

string $key

Return Value

string

protected int expiration(int $minutes)

Get the expiration time based on the given minutes.

Parameters

int $minutes

Return Value

int

Filesystem getFilesystem()

Get the Filesystem instance.

Return Value

Filesystem

string getDirectory()

Get the working directory of the cache.

Return Value

string

string getPrefix()

Get the cache key prefix.

Return Value

string

© Taylor Otwell
Licensed under the MIT License.
Laravel is a trademark of Taylor Otwell.
https://laravel.com/api/4.2/Illuminate/Cache/FileStore.html