chore: Drop unused \OC\Memcache\Factory::createLowLatency

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
This commit is contained in:
Christoph Wurst 2023-10-11 09:40:27 +02:00
parent bf1dbd33a7
commit fac05bce07
No known key found for this signature in database
GPG key ID: CC42AC2A7F0E56D8

View file

@ -184,15 +184,6 @@ class Factory implements ICacheFactory {
return $this->distributedCacheClass !== self::NULL_CACHE;
}
/**
* @see \OC\Memcache\Factory::createLocal()
* @param string $prefix
* @return ICache
*/
public function createLowLatency(string $prefix = ''): ICache {
return $this->createLocal($prefix);
}
/**
* Check if a local memory cache backend is available
*