Ensure consistent use of cache key when using CacheHandler

This commit is contained in:
Kijin Sung 2016-04-21 22:52:32 +09:00
parent 115ffa937e
commit b2238992da

View file

@ -64,7 +64,7 @@ class CacheHandler extends Handler
*/ */
public function getCacheKey($key) public function getCacheKey($key)
{ {
return Rhymix\Framework\Cache::getRealKey($key); return $key;
} }
/** /**