コード例 #1
0
ファイル: Memcache.php プロジェクト: reoring/sabel
 public function write($key, $value, $timeout = 0)
 {
     $this->kvs->write($key, $value, $timeout);
 }
コード例 #2
0
ファイル: Memcache.php プロジェクト: reoring/sabel
 public function destruct()
 {
     if ($this->started && (!$this->newSession || !empty($this->attributes))) {
         $this->kvs->write($this->sessionId, $this->attributes, $this->maxLifetime);
     }
 }