From 04c21166632f5cdf7413aa77e35b6a8fe4ffde05 Mon Sep 17 00:00:00 2001 From: Christopher Ng Date: Fri, 31 Jan 2025 14:51:48 -0800 Subject: [PATCH] perf(files_reminders): Use in-memory cache Signed-off-by: Christopher Ng --- apps/files_reminders/lib/Service/ReminderService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_reminders/lib/Service/ReminderService.php b/apps/files_reminders/lib/Service/ReminderService.php index 1d6c644e2ce..45b89a272a3 100644 --- a/apps/files_reminders/lib/Service/ReminderService.php +++ b/apps/files_reminders/lib/Service/ReminderService.php @@ -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 {