On this page
Class CacheSession
CacheSession provides method for saving sessions into a Cache engine. Used with CakeSession
- CacheSession implements CakeSessionHandlerInterface
Package: Cake\Model\Datasource\Session
See: CakeSession for configuration information.
Copyright: Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
License: MIT License
Location: Cake/Model/Datasource/Session/CacheSession.php
  
  See: CakeSession for configuration information.
Copyright: Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
License: MIT License
Location: Cake/Model/Datasource/Session/CacheSession.php
Method Summary
- 
    close() publicMethod called on close of a database session.
- 
    destroy() publicMethod called on the destruction of a database session.
- 
    gc() publicHelper function called on gc for cache sessions.
- 
    open() publicMethod called on open of a database session.
- 
    read() publicMethod used to read from a database session.
- 
    write() publicHelper function called on write for database sessions.
Method Detail
close()source public
close( )Method called on close of a database session.
Returns
booleanSuccess
Implementation of
CakeSessionHandlerInterface::close()
  destroy()source public
destroy( integer $id )Method called on the destruction of a database session.
Parameters
- 
     integer $id
- ID that uniquely identifies session in cache
Returns
booleanTrue for successful delete, false otherwise.
Implementation of
CakeSessionHandlerInterface::destroy()
  gc()source public
gc( integer $expires null )Helper function called on gc for cache sessions.
Parameters
- 
     integer $expiresoptional null
- Timestamp (defaults to current time)
Returns
booleanSuccess
Implementation of
CakeSessionHandlerInterface::gc()
  open()source public
open( )Method called on open of a database session.
Returns
booleanSuccess
Implementation of
CakeSessionHandlerInterface::open()
  read()source public
read( string $id )Method used to read from a database session.
Parameters
- 
     string $id
- The key of the value to read
Returns
mixedThe value of the key or false if it does not exist
Implementation of
CakeSessionHandlerInterface::read()
  write()source 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
booleanTrue for successful write, false otherwise.
Implementation of
CakeSessionHandlerInterface::write()
  © 2005–2017 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.
 https://api.cakephp.org/2.10/class-CacheSession.html