Use Memcache::replace() first instead of Memcache::set(): http://docs.php.net/manual/en/memcache.replace.php#100023

This commit is contained in:
Till Klampaeckel 2012-04-16 23:22:18 +03:00 committed by Fabien Potencier
parent a47a5aa52c
commit 962f975a6f

View File

@ -117,8 +117,11 @@ class MemcacheSessionHandler implements \SessionHandlerInterface
*/ */
public function write($sessionId, $data) public function write($sessionId, $data)
{ {
if (!$this->memcache->replace($this->prefix.$sessionId, $data, 0, $this->memcacheOptions['expiretime'])) {
return $this->memcache->set($this->prefix.$sessionId, $data, 0, $this->memcacheOptions['expiretime']); return $this->memcache->set($this->prefix.$sessionId, $data, 0, $this->memcacheOptions['expiretime']);
} }
return true;
}
/** /**
* {@inheritdoc} * {@inheritdoc}