Documentation

Table Of Contents

Previous topic

< Class Phalcon\Session\Adapter\Files

Next topic

Class Phalcon\Session\Adapter\Memcache >

This Page

Class Phalcon\Session\Adapter\Libmemcached

extends abstract class Phalcon\Session\Adapter

implements Phalcon\Session\AdapterInterface

This adapter store sessions in libmemcached

<?php

 $session = new Phalcon\Session\Adapter\Libmemcached(array(
     'servers' => array(
         array('host' => 'localhost', 'port' => 11211, 'weight' => 1),
     ),
     'client' => array(
         Memcached::OPT_HASH => Memcached::HASH_MD5,
         Memcached::OPT_PREFIX_KEY => 'prefix.',
     ),
    'lifetime' => 3600,
    'prefix' => 'my_'
 ));

 $session->start();

 $session->set('var', 'some-value');

 echo $session->get('var');

Methods

public getLibmemcached ()

...

public getLifetime ()

...

public __construct ([unknown $options])

Phalcon\Session\Adapter\Libmemcached constructor

public open ()

...

public close ()

...

public mixed read (unknown $sessionId)

public write (unknown $sessionId, unknown $data)

public boolean destroy ([unknown $session_id])

public gc ()

public boolean start () inherited from Phalcon\Session\Adapter

Starts the session (if headers are already sent the session will not be started)

public setOptions (unknown $options) inherited from Phalcon\Session\Adapter

Sets session’s options

<?php

session->setOptions(array(
    'uniqueId' => 'my-private-app'
));

public array getOptions () inherited from Phalcon\Session\Adapter

Get internal options

public mixed get (unknown $index, [unknown $defaultValue], [unknown $remove]) inherited from Phalcon\Session\Adapter

Gets a session variable from an application context

public set (unknown $index, unknown $value) inherited from Phalcon\Session\Adapter

Sets a session variable in an application context

<?php

session->set('auth', 'yes');

public has (unknown $index) inherited from Phalcon\Session\Adapter

Check whether a session variable is set in an application context

<?php

var_dump($session->has('auth'));

public remove (unknown $index) inherited from Phalcon\Session\Adapter

Removes a session variable from an application context

<?php

$session->remove('auth');

public getId () inherited from Phalcon\Session\Adapter

Returns active session id

<?php

echo $session->getId();

public setId (unknown $id) inherited from Phalcon\Session\Adapter

Set the current session id

<?php

$session->setId($id);

public isStarted () inherited from Phalcon\Session\Adapter

Check whether the session has been started

<?php

var_dump($session->isStarted());

public mixed __get (unknown $index) inherited from Phalcon\Session\Adapter

Alias: Gets a session variable from an application context

public __set (unknown $index, unknown $value) inherited from Phalcon\Session\Adapter

Alias: Sets a session variable in an application context

public __isset (unknown $index) inherited from Phalcon\Session\Adapter

Alias: Check whether a session variable is set in an application context

public __unset (unknown $index) inherited from Phalcon\Session\Adapter

Alias: Removes a session variable from an application context

Follow along: