\CI_Session_memcached_driver

CodeIgniter Session Memcached Driver

Summary

Methods
Properties
Constants
__construct()
open()
read()
write()
close()
destroy()
gc()
No public properties found
No constants found
_cookie_destroy()
_get_lock()
_release_lock()
_fail()
$_config
$_fingerprint
$_lock
$_session_id
$_success
$_failure
$_memcached
$_key_prefix
$_lock_key
N/A
No private methods found
No private properties found
N/A

Properties

$_config

$_config : 

Type

$_fingerprint

$_fingerprint : boolean

Data fingerprint

Type

boolean

$_lock

$_lock : mixed

Lock placeholder

Type

mixed

$_session_id

$_session_id : string

Read session ID

Used to detect session_regenerate_id() calls because PHP only calls write() after regenerating the ID.

Type

string

$_success

$_success : mixed

Success and failure return values

Necessary due to a bug in all PHP 5 versions where return values from userspace handlers are not handled properly. PHP 7 fixes the bug, so we need to return different values depending on the version.

Type

mixed

$_failure

$_failure : mixed

Success and failure return values

Necessary due to a bug in all PHP 5 versions where return values from userspace handlers are not handled properly. PHP 7 fixes the bug, so we need to return different values depending on the version.

Type

mixed

$_memcached

$_memcached : \Memcached

Memcached instance

Type

\Memcached

$_key_prefix

$_key_prefix : string

Key prefix

Type

string

$_lock_key

$_lock_key : string

Lock key

Type

string

Methods

__construct()

__construct(array  $params) : void

Class constructor

Parameters

array $params

Configuration parameters

open()

open(string  $save_path, string  $name) : boolean

Open

Sanitizes save_path and initializes connections.

Parameters

string $save_path

Server path(s)

string $name

Session cookie name, unused

Returns

boolean

read()

read(string  $session_id) : string

Read

Reads session data and acquires a lock

Parameters

string $session_id

Session ID

Returns

string —

Serialized session data

write()

write(string  $session_id, string  $session_data) : boolean

Write

Writes (create / update) session data

Parameters

string $session_id

Session ID

string $session_data

Serialized session data

Returns

boolean

close()

close() : boolean

Close

Releases locks and closes connection.

Returns

boolean

destroy()

destroy(string  $session_id) : boolean

Destroy

Destroys the current session.

Parameters

string $session_id

Session ID

Returns

boolean

gc()

gc(integer  $maxlifetime) : boolean

Garbage Collector

Deletes expired sessions

Parameters

integer $maxlifetime

Maximum lifetime of sessions

Returns

boolean

_cookie_destroy()

_cookie_destroy() : boolean

Cookie destroy

Internal method to force removal of a cookie by the client when session_destroy() is called.

Returns

boolean

_get_lock()

_get_lock(string  $session_id) : boolean

Get lock

Acquires an (emulated) lock.

Parameters

string $session_id

Session ID

Returns

boolean

_release_lock()

_release_lock() : boolean

Release lock

Releases a previously acquired lock

Returns

boolean

_fail()

_fail() : mixed

Fail

Drivers other than the 'files' one don't (need to) use the session.save_path INI setting, but that leads to confusing error messages emitted by PHP when open() or write() fail, as the message contains session.save_path ... To work around the problem, the drivers will call this method so that the INI is set just in time for the error message to be properly generated.

Returns

mixed