X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=web%2Fmodules%2Fcontrib%2Fmemcache%2Fsrc%2FLock%2FPersistentMemcacheLockBackend.php;fp=web%2Fmodules%2Fcontrib%2Fmemcache%2Fsrc%2FLock%2FPersistentMemcacheLockBackend.php;h=0000000000000000000000000000000000000000;hp=5b00a6d62f38a69c6eca579d543c38a47c1ebf77;hb=059867c3f96750652c80f39e44c442a58c2549ee;hpb=f8fc16ae6b862bef59baaad5d051dd37b7ff11b2 diff --git a/web/modules/contrib/memcache/src/Lock/PersistentMemcacheLockBackend.php b/web/modules/contrib/memcache/src/Lock/PersistentMemcacheLockBackend.php deleted file mode 100644 index 5b00a6d62..000000000 --- a/web/modules/contrib/memcache/src/Lock/PersistentMemcacheLockBackend.php +++ /dev/null @@ -1,32 +0,0 @@ -bin = $bin; - - // Do not call the parent constructor to avoid registering a shutdwon - // function that will release all locks at the end of the request. - $this->memcache = $memcache; - // Set the lockId to a fixed string to make the lock ID the same across - // multiple requests. The lock ID is used as a page token to relate all the - // locks set during a request to each other. - // @see \Drupal\Core\Lock\LockBackendInterface::getLockId() - $this->lockId = 'persistent'; - } - -}