コード例 #1
0
 protected static function getCacheKey($class, $instanceId)
 {
     $cacheKey = parent::getCacheKey($class, $instanceId);
     // prepend class including namespace to cache key to avoid collisions within the APC store
     return __CLASS__ . '#' . $cacheKey;
 }