SessionStore
class SessionStore implements Store
Traits
Fallback implementations for stores without native multi-key operations.
Methods
Get the number of seconds until the given DateTime.
Get the "available at" UNIX timestamp.
If the given value is an interval, convert it to a DateTime instance.
Given a start time, format the total run time for human readability.
Store multiple items in the cache for a given number of seconds.
Get all of the cached values and their expiration times.
Retrieve an item from the cache by key.
Determine if the given expiration time is expired.
Store an item in the cache for a given number of seconds.
Get the UNIX timestamp, with milliseconds, for the given number of seconds in the future.
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.
Adjust the expiration time of a cached item.
Remove an item from the cache.
Remove all items from the cache.
Get the item key for the given key.
Get the cache key prefix.
Details
in
InteractsWithTime at line 17
protected int
secondsUntil(DateInterval|DateTimeInterface|int $delay)
Get the number of seconds until the given DateTime.
in
InteractsWithTime at line 29
protected int
availableAt(DateInterval|DateTimeInterface|int|null $delay = 0)
Get the "available at" UNIX timestamp.
in
InteractsWithTime at line 41
protected DateTimeInterface|int
parseDateInterval(DateInterval|DateTimeInterface|int|null $delay)
If the given value is an interval, convert it to a DateTime instance.
in
InteractsWithTime at line 57
protected int
currentTime()
Get the current system time as a UNIX timestamp.
in
InteractsWithTime at line 65
protected string
runTimeForHumans(float $startTime, float|null $endTime = null)
Given a start time, format the total run time for human readability.
in
RetrievesMultipleKeys at line 21
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 40
bool
putMany(array $values, int $seconds)
Store multiple items in the cache for a given number of seconds.
at line 20
__construct(Session $session, string $key = '_cache')
Create a new session cache store.
at line 31
array
all()
Get all of the cached values and their expiration times.
at line 39
mixed
get(string $key)
Retrieve an item from the cache by key.
at line 62
protected bool
isExpired(int|float $expiresAt)
Determine if the given expiration time is expired.
at line 70
bool
put(string $key, mixed $value, int $seconds)
Store an item in the cache for a given number of seconds.
at line 86
protected float
toTimestamp(int $seconds)
Get the UNIX timestamp, with milliseconds, for the given number of seconds in the future.
at line 94
bool|int
increment(string $key, int $value = 1)
Increment the value of an item in the cache.
at line 113
bool|int
decrement(string $key, int $value = 1)
Decrement the value of an item in the cache.
at line 121
bool
forever(string $key, mixed $value)
Store an item in the cache indefinitely.
at line 129
bool
touch(string $key, int $seconds)
Adjust the expiration time of a cached item.
at line 145
bool
forget(string $key)
Remove an item from the cache.
at line 163
bool
flush()
Remove all items from the cache.
at line 173
string
itemKey(string $key)
Get the item key for the given key.
at line 181
string
getPrefix()
Get the cache key prefix.