extends abstract class Phalcon\Session\Adapter
implements Phalcon\Session\AdapterInterface
Source on GitHub
This adapter store sessions in libmemcached
use Phalcon\Session\Adapter\Libmemcached;
$session = new Libmemcached([
'servers' => [
['host' => 'localhost', 'port' => 11211, 'weight' => 1],
],
'client' => [
\Memcached::OPT_HASH => \Memcached::HASH_MD5,
\Memcached::OPT_PREFIX_KEY => 'prefix.',
],
'lifetime' =>