From 38191f38be65920555b767ee4e980fd426cc827a Mon Sep 17 00:00:00 2001 From: Alec Smecher Date: Tue, 7 Jan 2025 10:27:12 -0800 Subject: [PATCH] pkp/pkp-lib#7111 Add note about new config options for caching --- docs/release-notes/README-3.5.0 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/release-notes/README-3.5.0 b/docs/release-notes/README-3.5.0 index f252460b2ad..b3261d6d960 100644 --- a/docs/release-notes/README-3.5.0 +++ b/docs/release-notes/README-3.5.0 @@ -27,6 +27,10 @@ New config.inc.php section for schedule task named schedule is added, with the f New config.inc.php parameters added for queues: - process_jobs_at_task_scheduler (default value: Off): Controls whether queued jobs should be executed together with the scheduled tasks. +New config.inc.php parameters added for caching: + - default (default value: 'opcache'). Can be either 'file' or 'opcache' to indicate which Laravel caching implementation should be used. + - path (default value: 'cache/opcache'). Use to specify a path for cache storage when using 'file' or 'opcache' drivers. + New Features ------------