Property | Type | Description | |
---|---|---|---|
$_stored | array | The list of keys stored in the cache backend. |
Method | Description | |
---|---|---|
__construct ( array $params = [] ) | ||
clear ( ) | ||
exists ( $key, integer $lifetime ) | ||
expire ( $key ) | ||
get ( $key, integer $lifetime ) | ||
set ( $key, $data, integer $lifetime ) |
Method | Description | |
---|---|---|
_getCid ( $key, $in_session ) | ||
_initOb ( ) | ||
_saveStored ( ) | Save stored list to the session. |
public __construct ( array $params = [] ) | ||
$params | array | Configuration parameters: - app: (string) Application to store session data under. - cache: (Horde_Cache) [REQUIRED] The backend cache driver used to store large entries. - maxsize: (integer) The maximum size of the data to store in the session (0 to always store in session). - storage_key: (string) The storage key to save the session data under. |
protected array $_stored | ||
return | array |