mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
perf(files_reminders): Use in-memory cache
Signed-off-by: Christopher Ng <chrng8@gmail.com>
This commit is contained in:
parent
c97589997f
commit
2015cd87fd
1 changed files with 1 additions and 1 deletions
|
|
@ -44,7 +44,7 @@ class ReminderService {
|
|||
protected LoggerInterface $logger,
|
||||
protected ICacheFactory $cacheFactory,
|
||||
) {
|
||||
$this->cache = $this->cacheFactory->createDistributed('files_reminders');
|
||||
$this->cache = $this->cacheFactory->createInMemory();
|
||||
}
|
||||
|
||||
public function cacheFolder(IUser $user, Folder $folder): void {
|
||||
|
|
|
|||
Loading…
Reference in a new issue