|
ILIAS
release_5-3 Revision v5.3.23-19-g915713cf615
|
Inheritance diagram for SimpleSAML\Store\Memcache:
Collaboration diagram for SimpleSAML\Store\Memcache:Public Member Functions | |
| get ($type, $key) | |
| Retrieve a value from the data store. More... | |
| set ($type, $key, $value, $expire=null) | |
| Save a value to the data store. More... | |
| delete ($type, $key) | |
| Delete a value from the data store. More... | |
| get ($type, $key) | |
| Retrieve a value from the data store. More... | |
| set ($type, $key, $value, $expire=null) | |
| Save a value to the data store. More... | |
| delete ($type, $key) | |
| Delete a value from the data store. More... | |
Protected Member Functions | |
| __construct () | |
| This function implements the constructor for this class. More... | |
Private Attributes | |
| $prefix | |
Additional Inherited Members | |
Static Public Member Functions inherited from SimpleSAML\Store | |
| static | getInstance () |
| Retrieve our singleton instance. More... | |
Definition at line 13 of file Memcache.php.
|
protected |
This function implements the constructor for this class.
It loads the Memcache configuration.
Definition at line 26 of file Memcache.php.
References $config.
| SimpleSAML\Store\Memcache::delete | ( | $type, | |
| $key | |||
| ) |
Delete a value from the data store.
| string | $type | The data type. |
| string | $key | The key. |
Reimplemented from SimpleSAML\Store.
Definition at line 77 of file Memcache.php.
References $key, $type, and SimpleSAML_Memcache\delete().
Here is the call graph for this function:| SimpleSAML\Store\Memcache::get | ( | $type, | |
| $key | |||
| ) |
Retrieve a value from the data store.
| string | $type | The data type. |
| string | $key | The key. |
Reimplemented from SimpleSAML\Store.
Definition at line 40 of file Memcache.php.
| SimpleSAML\Store\Memcache::set | ( | $type, | |
| $key, | |||
| $value, | |||
$expire = null |
|||
| ) |
Save a value to the data store.
| string | $type | The data type. |
| string | $key | The key. |
| mixed | $value | The value. |
| int | NULL | $expire | The expiration time (unix timestamp), or NULL if it never expires. |
Reimplemented from SimpleSAML\Store.
Definition at line 57 of file Memcache.php.
References $expire, $key, $type, and SimpleSAML_Memcache\set().
Here is the call graph for this function:
|
private |
Definition at line 20 of file Memcache.php.