aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/lock/memcachelockingprovider.php
diff options
context:
space:
mode:
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);
}
}