Class CacheSession

CacheSession provides method for saving sessions into a Cache engine. Used with CakeSession

CacheSession implements CakeSessionHandlerInterface
Package: Cake\Model\Datasource\Session
Copyright: Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
License: MIT License
See: CakeSession for configuration information.
Located at Cake/Model/Datasource/Session/CacheSession.php

Method Detail

closesource public

close( )

Method called on close of a database session.

Returns

boolean
Success

Implementation of

CakeSessionHandlerInterface::close()

destroysource public

destroy( integer $id )

Method called on the destruction of a database session.

Parameters

integer $id
ID that uniquely identifies session in cache

Returns

boolean
True for successful delete, false otherwise.

Implementation of

CakeSessionHandlerInterface::destroy()

gcsource public

gc( integer $expires null )

Helper function called on gc for cache sessions.

Parameters

integer $expires optional null
Timestamp (defaults to current time)

Returns

boolean
Success

Implementation of

CakeSessionHandlerInterface::gc()

opensource public

open( )

Method called on open of a database session.

Returns

boolean
Success

Implementation of

CakeSessionHandlerInterface::open()

readsource public

read( string $id )

Method used to read from a database session.

Parameters

string $id
The key of the value to read

Returns

mixed
The value of the key or false if it does not exist

Implementation of

CakeSessionHandlerInterface::read()

writesource public

write( integer $id , mixed $data )

Helper function called on write for database sessions.

Parameters

integer $id
ID that uniquely identifies session in database
mixed $data
The value of the data to be saved.

Returns

boolean
True for successful write, false otherwise.

Implementation of

CakeSessionHandlerInterface::write()

© 2005–2016 The Cake Software Foundation, Inc.
Licensed under the MIT License.
CakePHP is a registered trademark of Cake Software Foundation, Inc.
We are not endorsed by or affiliated with CakePHP.
http://api.cakephp.org/2.7/class-CacheSession.html