Exemple #1
0
 /**
  * Destroy Session - remove data from resource for
  * given session id
  *
  * @param string $id
  */
 public function destroy($id)
 {
     return Zrt_Cache_Manager::cache($this->_sessionCacheName)->delete($id);
 }
Exemple #2
0
 public function delete($key)
 {
     if ($this->isEnabled(self::$_targetCache)) {
         $this->getCache(self::$_targetCache)->delete(self::multiTenantKey($key));
     }
     self::$_shared = false;
 }
Exemple #3
0
 protected function _getTagCacheKey()
 {
     return Zrt_Cache_Manager::multiTenantKey(self::TAG_CACHE_KEY_BASE);
 }