Documentation

MemcachedSessionHandler extends AbstractSessionHandler
in package

Memcached based session storage handler based on the Memcached class provided by the PHP memcached extension.

Tags
see
https://php.net/memcached
author

Drak drak@zikula.org

Table of Contents

$igbinaryEmptyData  : mixed
$memcached  : mixed
$newSessionId  : mixed
$prefetchData  : mixed
$prefetchId  : mixed
$prefix  : string
$sessionName  : mixed
$ttl  : int
__construct()  : mixed
Constructor.
close()  : bool
destroy()  : bool
gc()  : int|false
open()  : bool
read()  : string
updateTimestamp()  : bool
validateId()  : bool
write()  : bool
doDestroy()  : bool
doRead()  : string
doWrite()  : bool
getMemcached()  : Memcached
Return a Memcached instance.
getCompatibleTtl()  : int

Properties

Methods

__construct()

Constructor.

public __construct(Memcached $memcached[, array<string|int, mixed> $options = [] ]) : mixed

List of available options:

  • prefix: The prefix to use for the memcached keys in order to avoid collision
  • ttl: The time to live in seconds.
Parameters
$memcached : Memcached
$options : array<string|int, mixed> = []
Tags
throws
InvalidArgumentException

When unsupported options are passed

Return values
mixed

destroy()

public destroy(mixed $sessionId) : bool
Parameters
$sessionId : mixed
Return values
bool

gc()

public gc(mixed $maxlifetime) : int|false
Parameters
$maxlifetime : mixed
Return values
int|false

open()

public open(mixed $savePath, mixed $sessionName) : bool
Parameters
$savePath : mixed
$sessionName : mixed
Return values
bool

read()

public read(mixed $sessionId) : string
Parameters
$sessionId : mixed
Return values
string

updateTimestamp()

public updateTimestamp(mixed $sessionId, mixed $data) : bool
Parameters
$sessionId : mixed
$data : mixed
Return values
bool

validateId()

public validateId(mixed $sessionId) : bool
Parameters
$sessionId : mixed
Return values
bool

write()

public write(mixed $sessionId, mixed $data) : bool
Parameters
$sessionId : mixed
$data : mixed
Return values
bool

doDestroy()

protected doDestroy(string $sessionId) : bool
Parameters
$sessionId : string
Return values
bool

doRead()

protected doRead(string $sessionId) : string
Parameters
$sessionId : string
Return values
string

doWrite()

protected doWrite(string $sessionId, string $data) : bool
Parameters
$sessionId : string
$data : string
Return values
bool

getMemcached()

Return a Memcached instance.

protected getMemcached() : Memcached
Return values
Memcached

Search results