public function MemcacheSessionHandler::write

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Session/Storage/Handler/MemcacheSessionHandler.php, line 88

Class

MemcacheSessionHandler
MemcacheSessionHandler.

Namespace

Symfony\Component\HttpFoundation\Session\Storage\Handler

Code

public function write($sessionId, $data) {
  return $this->memcache
    ->set($this->prefix . $sessionId, $data, 0, time() + $this->ttl);
}