PHP Class Metaphore\Store\MemcachedStore

Inheritance: extends AbstractMemcachedStore, implements Metaphore\Store\ValueStoreInterface, implements Metaphore\Store\LockStoreInterface
Show file Open project: sobstel/metaphore

Protected Properties

Property Type Description
$memcached * @var Memcached

Public Methods

Method Description
__construct ( Memcached $memcached )
add ( $key, $value, $ttl )
delete ( $key )
get ( $key )
set ( $key, $value, $ttl )

Method Details

__construct() public method

public __construct ( Memcached $memcached )
$memcached Memcached

add() public method

public add ( $key, $value, $ttl )

delete() public method

public delete ( $key )

get() public method

public get ( $key )

set() public method

public set ( $key, $value, $ttl )

Property Details

$memcached protected property

* @var Memcached
protected $memcached