Beispiel #1
0
 /**
  * Get a cache ID string from an ID/group pair
  *
  * @param   string  $id     The cache data ID
  * @param   string  $group  The cache data group
  *
  * @return  string
  *
  * @since   11.1
  */
 protected function _getCacheId($id, $group)
 {
     $name = md5($this->_application . '-' . $id . '-' . $this->_language);
     $this->rawname = $this->_hash . '-' . $name;
     return JCache::getPlatformPrefix() . $this->_hash . '-cache-' . $group . '-' . $name;
 }
 /**
  * Get a cache_id string from an id/group pair
  *
  * @param   string  $id     The cache data id
  * @param   string  $group  The cache data group
  *
  * @return  string   The cache_id string
  *
  * @since   11.1
  */
 protected function _getCacheId($id, $group)
 {
     $prefix = JCache::getPlatformPrefix();
     $length = strlen($prefix);
     $cache_id = parent::_getCacheId($id, $group);
     if ($length) {
         // Memcache use suffix instead of prefix
         $cache_id = substr($cache_id, $length) . strrev($prefix);
     }
     return $cache_id;
 }