perf(files_reminders): Use in-memory cache

Signed-off-by: Christopher Ng <chrng8@gmail.com>
pull/50244/head
Christopher Ng 2025-01-31 14:51:48 +07:00 committed by Pytal
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 {