perf: Increase cache TTL for mount point conflict cache

Signed-off-by: Julius Knorr <jus@bitgrid.net>
This commit is contained in:
Julius Knorr 2025-04-07 15:12:41 +02:00
parent c23e4b34be
commit aa36c72e8f
No known key found for this signature in database
GPG key ID: 4C614C6ED2CDE6DF

View file

@ -104,7 +104,7 @@ class SharedMount extends MountPoint implements MoveableMount, ISharedMountPoint
$this->updateFileTarget($newMountPoint, $share);
}
$this->cache->set($cacheKey, $newMountPoint, 60 * 60);
$this->cache->set($cacheKey, $newMountPoint, 2 * 24 * 60 * 60);
return $newMountPoint;
}