示例#1
0
文件: Apc.php 项目: reoring/sabel
 public static function create()
 {
     if (self::$instance === null) {
         self::$instance = new self();
     }
     return self::$instance;
 }
示例#2
0
文件: Apc.php 项目: reoring/sabel
 public function delete($key)
 {
     return $this->kvs->delete($key);
 }