We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0b22ed commit 17d93deCopy full SHA for 17d93de
1 file changed
apps/files_reminders/lib/Service/ReminderService.php
@@ -11,6 +11,7 @@
11
12
use DateTime;
13
use DateTimeZone;
14
+use OC\Memcache\WithLocalCache;
15
use OCA\FilesReminders\AppInfo\Application;
16
use OCA\FilesReminders\Db\Reminder;
17
use OCA\FilesReminders\Db\ReminderMapper;
@@ -44,7 +45,7 @@ public function __construct(
44
45
protected LoggerInterface $logger,
46
protected ICacheFactory $cacheFactory,
47
) {
- $this->cache = $this->cacheFactory->createDistributed('files_reminders');
48
+ $this->cache = new WithLocalCache($this->cacheFactory->createDistributed('files_reminders'));
49
}
50
51
public function cacheFolder(IUser $user, Folder $folder): void {
0 commit comments