예제 #1
0
 function SECacheStorageMemcache($options = array())
 {
     if (!$this->test()) {
         die("The memcache extension isn't available");
     }
     parent::__construct($options);
     $params =& SECacheStorageMemcache::getConfig();
     $this->_compress = isset($params['compression']) ? $params['compression'] : FALSE;
     $this->_db =& SECacheStorageMemcache::getConnection();
 }