On this page
CacheBasedSessionHandler
class CacheBasedSessionHandler implements SessionHandlerInterface (View source)
Properties
protected Repository | $cache | The cache repository instance. |
|
protected int | $minutes | The number of minutes to store the data in the cache. |
Methods
void | __construct(Repository $cache, int $minutes) Create a new cache driven handler instance. |
|
bool | open($savePath, $sessionName) {@inheritdoc} |
|
bool | close() {@inheritdoc} |
|
string | read($sessionId) {@inheritdoc} |
|
bool | write($sessionId, $data) {@inheritdoc} |
|
bool | destroy($sessionId) {@inheritdoc} |
|
int | gc($lifetime) {@inheritdoc} |
|
Repository | getCache() Get the underlying cache repository. |
Details
void __construct(Repository $cache, int $minutes)
Create a new cache driven handler instance.
bool open($savePath, $sessionName)
{@inheritdoc}
bool close()
{@inheritdoc}
string read($sessionId)
{@inheritdoc}
bool write($sessionId, $data)
{@inheritdoc}
bool destroy($sessionId)
{@inheritdoc}
int gc($lifetime)
{@inheritdoc}
Repository getCache()
Get the underlying cache repository.
© Taylor Otwell
Licensed under the MIT License.
Laravel is a trademark of Taylor Otwell.
https://laravel.com/api/10.x/Illuminate/Session/CacheBasedSessionHandler.html