Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
perf(files_reminders): Use in-memory cache
Signed-off-by: Christopher Ng <[email protected]>
  • Loading branch information
Pytal committed Feb 21, 2025
commit 2015cd87fd47d41eee9e7f3f55c875c529e621f3
2 changes: 1 addition & 1 deletion apps/files_reminders/lib/Service/ReminderService.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public function __construct(
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 {
Expand Down