public function MemcachedSessionHandler::write

File

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

Class

MemcachedSessionHandler
MemcachedSessionHandler.

Namespace

Symfony\Component\HttpFoundation\Session\Storage\Handler

Code

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