/**
  * 取唯一实例
  * @return instance
  */
 private static function getInstant()
 {
     if (null == self::$_zcache) {
         self::$_zcache = new zcache();
     }
     return self::$_zcache;
 }