interface Repository

Methods

bool
has(string $key)

Determine if an item exists in the cache.

mixed
get(string $key, mixed $default = null)

Retrieve an item from the cache by key.

mixed
pull(string $key, mixed $default = null)

Retrieve an item from the cache and delete it.

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

Store an item in the cache.

bool
add(string $key, mixed $value, DateTime|float|int $minutes)

Store an item in the cache if the key does not exist.

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.

mixed
remember(string $key, DateTime|float|int $minutes, Closure $callback)

Get an item from the cache, or store the default value.

mixed
sear(string $key, Closure $callback)

Get an item from the cache, or store the default value forever.

mixed
rememberForever(string $key, Closure $callback)

Get an item from the cache, or store the default value forever.

bool
forget(string $key)

Remove an item from the cache.

Details

at line 15
bool has(string $key)

Determine if an item exists in the cache.

Parameters

string $key

Return Value

bool

at line 24
mixed get(string $key, mixed $default = null)

Retrieve an item from the cache by key.

Parameters

string $key
mixed $default

Return Value

mixed

at line 33
mixed pull(string $key, mixed $default = null)

Retrieve an item from the cache and delete it.

Parameters

string $key
mixed $default

Return Value

mixed

at line 43
void put(string $key, mixed $value, DateTime|float|int $minutes)

Store an item in the cache.

Parameters

string $key
mixed $value
DateTime|float|int $minutes

Return Value

void

at line 53
bool add(string $key, mixed $value, DateTime|float|int $minutes)

Store an item in the cache if the key does not exist.

Parameters

string $key
mixed $value
DateTime|float|int $minutes

Return Value

bool

at line 62
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

at line 71
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

at line 80
void forever(string $key, mixed $value)

Store an item in the cache indefinitely.

Parameters

string $key
mixed $value

Return Value

void

at line 90
mixed remember(string $key, DateTime|float|int $minutes, Closure $callback)

Get an item from the cache, or store the default value.

Parameters

string $key
DateTime|float|int $minutes
Closure $callback

Return Value

mixed

at line 99
mixed sear(string $key, Closure $callback)

Get an item from the cache, or store the default value forever.

Parameters

string $key
Closure $callback

Return Value

mixed

at line 108
mixed rememberForever(string $key, Closure $callback)

Get an item from the cache, or store the default value forever.

Parameters

string $key
Closure $callback

Return Value

mixed

at line 116
bool forget(string $key)

Remove an item from the cache.

Parameters

string $key

Return Value

bool