48 public function __construct(\Memcache $memcache, array $options = array())
50 if ($diff = array_diff(array_keys($options), array(
'prefix',
'expiretime'))) {
51 throw new \InvalidArgumentException(sprintf(
52 'The following options are not supported "%s"', implode(
', ', $diff)
56 $this->memcache = $memcache;
57 $this->ttl = isset($options[
'expiretime']) ? (int) $options[
'expiretime'] : 86400;
58 $this->prefix = isset($options[
'prefix']) ? $options[
'prefix'] :
'sf2s';
64 public function open($savePath, $sessionName)
72 public function close()
80 public function read($sessionId)
82 return $this->memcache->get($this->prefix.$sessionId) ?:
'';
88 public function write($sessionId, $data)
90 return $this->memcache->set($this->prefix.$sessionId, $data, 0, time() + $this->ttl);
96 public function destroy($sessionId)
98 return $this->memcache->delete($this->prefix.$sessionId);
104 public function gc($maxlifetime)
117 return $this->memcache;