Adding possibility to use a different cache-backend for locking and caching

- Renaming *LockDriver to *Lock since it isn't a "driver" anymore
This commit is contained in:
Philipp Holzer
2019-08-04 15:42:39 +02:00
parent 86bf2ee45a
commit 34e4968c06
19 changed files with 149 additions and 64 deletions

View File

@@ -153,4 +153,9 @@ class APCuCache extends AbstractCache implements IMemoryCache
return true;
}
public function __toString()
{
return self::TYPE_APCU;
}
}