interface Repository implements CacheInterface (View source)

Methods

TCacheValue)
pull(array|string $key, TCacheValue|TCacheValue $default = null)

Retrieve an item from the cache and delete it.

bool
put(string $key, mixed $value, DateTimeInterface|DateInterval|int|null $ttl = null)

Store an item in the cache.

bool
add(string $key, mixed $value, DateTimeInterface|DateInterval|int|null $ttl = null)

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.

bool
forever(string $key, mixed $value)

Store an item in the cache indefinitely.

TCacheValue
remember(string $key, DateTimeInterface|DateInterval|Closure|int|null $ttl, Closure $callback)

Get an item from the cache, or execute the given Closure and store the result.

TCacheValue
sear(string $key, Closure $callback)

Get an item from the cache, or execute the given Closure and store the result forever.

TCacheValue
rememberForever(string $key, Closure $callback)

Get an item from the cache, or execute the given Closure and store the result forever.

bool
forget(string $key)

Remove an item from the cache.

getStore()

Get the cache store implementation.

Details

TCacheValue) pull(array|string $key, TCacheValue|TCacheValue $default = null)

Retrieve an item from the cache and delete it.

Parameters

array|string $key
TCacheValue|TCacheValue $default

Return Value

TCacheValue)

bool put(string $key, mixed $value, DateTimeInterface|DateInterval|int|null $ttl = null)

Store an item in the cache.

Parameters

string $key
mixed $value
DateTimeInterface|DateInterval|int|null $ttl

Return Value

bool

bool add(string $key, mixed $value, DateTimeInterface|DateInterval|int|null $ttl = null)

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

Parameters

string $key
mixed $value
DateTimeInterface|DateInterval|int|null $ttl

Return Value

bool

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

bool forever(string $key, mixed $value)

Store an item in the cache indefinitely.

Parameters

string $key
mixed $value

Return Value

bool

TCacheValue remember(string $key, DateTimeInterface|DateInterval|Closure|int|null $ttl, Closure $callback)

Get an item from the cache, or execute the given Closure and store the result.

Parameters

string $key
DateTimeInterface|DateInterval|Closure|int|null $ttl
Closure $callback

Return Value

TCacheValue

TCacheValue sear(string $key, Closure $callback)

Get an item from the cache, or execute the given Closure and store the result forever.

Parameters

string $key
Closure $callback

Return Value

TCacheValue

TCacheValue rememberForever(string $key, Closure $callback)

Get an item from the cache, or execute the given Closure and store the result forever.

Parameters

string $key
Closure $callback

Return Value

TCacheValue

bool forget(string $key)

Remove an item from the cache.

Parameters

string $key

Return Value

bool

Store getStore()

Get the cache store implementation.

Return Value

Store

Laravel Cloud is the best place to deploy Laravel, Nuxt, Express, Hono, Node.js, Bun, Go, Flask, Python, and more, with dedicated infrastructure available on AWS through Laravel Private Cloud.