summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2012-06-05 19:58:30 +0200
committerRobin Appelman <icewind@owncloud.com>2012-06-05 19:58:30 +0200
commit301a14dcd6502f3eaaa621476c1fd788727f60ec (patch)
treeed5e90df962660c5dec9ad651ee1895aa71a4ead /lib
parente11bf460e06fdafe04cc3bd7436725c40a71ffac (diff)
downloadnextcloud-server-301a14dcd6502f3eaaa621476c1fd788727f60ec.tar.gz
nextcloud-server-301a14dcd6502f3eaaa621476c1fd788727f60ec.zip
add XCache backend and testcases for OC_Cache
Diffstat (limited to 'lib')
-rw-r--r--lib/cache/xcache.php37
1 files changed, 37 insertions, 0 deletions
diff --git a/lib/cache/xcache.php b/lib/cache/xcache.php
new file mode 100644
index 00000000000..a1f4d905b89
--- /dev/null
+++ b/lib/cache/xcache.php
@@ -0,0 +1,37 @@
+<?php
+/**
+ * Copyright (c) 2012 Bart Visscher <bartv@thisnet.nl>
+ * This file is licensed under the Affero General Public License version 3 or
+ * later.
+ * See the COPYING-README file.
+ */
+
+
+class OC_Cache_XCache{
+ /**
+ * entries in XCache gets namespaced to prevent collisions between owncloud instaces and users
+ */
+ protected function getNameSpace() {
+ return OC_Util::getInstanceId().'/'.OC_User::getUser().'/';
+ }
+
+ public function get($key) {
+ return xcache_get($this->getNamespace().$key);
+ }
+
+ public function set($key, $value, $ttl=0) {
+ if($ttl>0){
+ return xcache_set($this->getNamespace().$key,$value,$ttl);
+ }else{
+ return xcache_set($this->getNamespace().$key,$value);
+ }
+ }
+
+ public function remove($key) {
+ return xcache_unset($this->getNamespace().$key);
+ }
+
+ public function clear(){
+ return xcache_unset_by_prefix($this->getNamespace());
+ }
+}