class MemcachedSessionHandler implements SessionHandlerInterface
MemcachedSessionHandler.
Memcached based session storage handler based on the Memcached class provided by the PHP memcached extension.
Methods
__construct(Memcached $memcached, array $options = array()) Constructor. | ||
open($savePath, $sessionName) {@inheritdoc} | ||
close() {@inheritdoc} | ||
read($sessionId) {@inheritdoc} | ||
write($sessionId, $data) {@inheritdoc} | ||
destroy($sessionId) {@inheritdoc} | ||
gc($maxlifetime) {@inheritdoc} |
Details
__construct(Memcached $memcached, array $options = array())
Constructor.
List of available options: * prefix: The prefix to use for the memcached keys in order to avoid collision * expiretime: The time to live in seconds
open($savePath, $sessionName)
{@inheritdoc}
close()
{@inheritdoc}
read($sessionId)
{@inheritdoc}
write($sessionId, $data)
{@inheritdoc}
destroy($sessionId)
{@inheritdoc}
gc($maxlifetime)
{@inheritdoc}
Please login to continue.