Browse Source

Fixes #811.

tags/2.0.0-beta
Qiang Xue 11 years ago
parent
commit
d34f8486ab
  1. 10
      framework/yii/caching/ApcCache.php

10
framework/yii/caching/ApcCache.php

@ -21,6 +21,16 @@ namespace yii\caching;
class ApcCache extends Cache
{
/**
* Checks the existence of a key in APC cache.
* @param string $key the key to be checked.
* @return boolean if the key exists or not
*/
public function keyExists($key)
{
return apc_exists($key);
}
/**
* Retrieves a value from cache with a specified key.
* This is the implementation of the method declared in the parent class.
* @param string $key a unique key identifying the cached value

Loading…
Cancel
Save