diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2021-03-09 19:37:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-09 19:37:34 +0100 |
commit | 61f13583a200ca347b0b18061df32297177c0d33 (patch) | |
tree | cfb3b5b53671795b45941a6033bf039a895250a6 /lib/public | |
parent | 95af966f601832172175ea0ee77c629173b3a730 (diff) | |
parent | 0c5adaddf8136116d560fe1b93838f98877880c7 (diff) | |
download | nextcloud-server-61f13583a200ca347b0b18061df32297177c0d33.tar.gz nextcloud-server-61f13583a200ca347b0b18061df32297177c0d33.zip |
Merge pull request #25677 from nextcloud/drop/cache-factory-create
Drop \OC\Memcache\Factory::create
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/ICacheFactory.php | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/lib/public/ICacheFactory.php b/lib/public/ICacheFactory.php index 51b2ff30c04..1da7da1e26b 100644 --- a/lib/public/ICacheFactory.php +++ b/lib/public/ICacheFactory.php @@ -35,18 +35,6 @@ namespace OCP; */ interface ICacheFactory { /** - * Get a distributed memory cache instance - * - * All entries added trough the cache instance will be namespaced by $prefix to prevent collisions between apps - * - * @param string $prefix - * @return ICache - * @since 7.0.0 - * @deprecated 13.0.0 Use either createLocking, createDistributed or createLocal - */ - public function create(string $prefix = ''): ICache; - - /** * Check if any memory cache backend is available * * @return bool |