summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2015-12-09 14:39:12 +0100
committerRobin Appelman <icewind@owncloud.com>2015-12-09 14:39:12 +0100
commit0a80bf55739ef9d30cfef376377f5c54dd5a9a9c (patch)
treeb398337d6aaf04ad08d71f356c62c660acbbf2fe
parent5c95939bf388111a21ca94461e37b1b0b0b38159 (diff)
downloadnextcloud-server-0a80bf55739ef9d30cfef376377f5c54dd5a9a9c.tar.gz
nextcloud-server-0a80bf55739ef9d30cfef376377f5c54dd5a9a9c.zip
Add interface for memcache backends that support setting ttl on exisiting keys
-rw-r--r--lib/private/memcache/redis.php8
-rw-r--r--lib/public/imemcachettl.php37
2 files changed, 43 insertions, 2 deletions
diff --git a/lib/private/memcache/redis.php b/lib/private/memcache/redis.php
index 83be662eabf..68b62e7534a 100644
--- a/lib/private/memcache/redis.php
+++ b/lib/private/memcache/redis.php
@@ -25,9 +25,9 @@
namespace OC\Memcache;
-use OCP\IMemcache;
+use OCP\IMemcacheTTL;
-class Redis extends Cache implements IMemcache {
+class Redis extends Cache implements IMemcacheTTL {
/**
* @var \Redis $cache
*/
@@ -195,6 +195,10 @@ class Redis extends Cache implements IMemcache {
return false;
}
+ public function setTTL($key, $ttl) {
+ self::$cache->expire($this->getNamespace() . $key, $ttl);
+ }
+
static public function isAvailable() {
return extension_loaded('redis')
&& version_compare(phpversion('redis'), '2.2.5', '>=');
diff --git a/lib/public/imemcachettl.php b/lib/public/imemcachettl.php
new file mode 100644
index 00000000000..aae26accb48
--- /dev/null
+++ b/lib/public/imemcachettl.php
@@ -0,0 +1,37 @@
+<?php
+/**
+ * @author Robin Appelman <icewind@owncloud.com>
+ *
+ * @copyright Copyright (c) 2015, ownCloud, Inc.
+ * @license AGPL-3.0
+ *
+ * This code is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License, version 3,
+ * as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License, version 3,
+ * along with this program. If not, see <http://www.gnu.org/licenses/>
+ *
+ */
+
+namespace OCP;
+
+/**
+ * Interface for memcache backends that support setting ttl after the value is set
+ *
+ * @since 9.0.0
+ */
+interface IMemcacheTTL extends IMemcache {
+ /**
+ * Set the ttl for an existing value
+ *
+ * @param string $key
+ * @param int $ttl time to live in seconds
+ */
+ public function setTTL($key, $ttl);
+}