예제 #1
0
파일: Memcache.php 프로젝트: reoring/sabel
 protected function getSessionData($sessionId)
 {
     $data = $this->kvs->read($sessionId);
     if (is_array($data)) {
         return $data;
     } else {
         $this->newSession = true;
         return array();
     }
 }
예제 #2
0
파일: Memcache.php 프로젝트: reoring/sabel
 public function read($key)
 {
     return $this->kvs->read($key);
 }