summaryrefslogtreecommitdiffstats
path: root/lib/private/lock/memcachelockingprovider.php
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2015-12-09 14:41:15 +0100
committerRobin Appelman <icewind@owncloud.com>2015-12-09 14:41:15 +0100
commit693a3c353ef88df2372426d4d1ea9f6527a59d62 (patch)
treeb1376971f51f8ccc2750ab09c359ebbc7b97dfaf /lib/private/lock/memcachelockingprovider.php
parent0a80bf55739ef9d30cfef376377f5c54dd5a9a9c (diff)
downloadnextcloud-server-693a3c353ef88df2372426d4d1ea9f6527a59d62.tar.gz
nextcloud-server-693a3c353ef88df2372426d4d1ea9f6527a59d62.zip
ttl for memcache locking backends that support it
Diffstat (limited to 'lib/private/lock/memcachelockingprovider.php')
-rw-r--r--lib/private/lock/memcachelockingprovider.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/private/lock/memcachelockingprovider.php b/lib/private/lock/memcachelockingprovider.php
index e4158dcdfdf..af95200d159 100644
--- a/lib/private/lock/memcachelockingprovider.php
+++ b/lib/private/lock/memcachelockingprovider.php
@@ -21,6 +21,7 @@
namespace OC\Lock;
+use OCP\IMemcacheTTL;
use OCP\Lock\LockedException;
use OCP\IMemcache;
@@ -37,6 +38,12 @@ class MemcacheLockingProvider extends AbstractLockingProvider {
$this->memcache = $memcache;
}
+ private function setTTL($path) {
+ if ($this->memcache instanceof IMemcacheTTL) {
+ $this->memcache->setTTL($path, self::TTL);
+ }
+ }
+
/**
* @param string $path
* @param int $type self::LOCK_SHARED or self::LOCK_EXCLUSIVE
@@ -69,6 +76,7 @@ class MemcacheLockingProvider extends AbstractLockingProvider {
throw new LockedException($path);
}
}
+ $this->setTTL($path);
$this->markAcquire($path, $type);
}
@@ -106,6 +114,7 @@ class MemcacheLockingProvider extends AbstractLockingProvider {
throw new LockedException($path);
}
}
+ $this->setTTL($path);
$this->markChange($path, $targetType);
}
}