summaryrefslogtreecommitdiffstats
path: root/lib/cache.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/cache.php')
-rw-r--r--lib/cache.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/cache.php b/lib/cache.php
index 36cec63aa57..70f11f35518 100644
--- a/lib/cache.php
+++ b/lib/cache.php
@@ -30,6 +30,13 @@ class OC_Cache {
return self::$cache->set($key, $value, $ttl);
}
+ static public function hasKey($key) {
+ if (!self::$cache) {
+ self::init();
+ }
+ return self::$cache->hasKey($key);
+ }
+
static public function remove($key) {
if (!self::$cache) {
self::init();