From 3210f5982fb85497cb4a0300db6f2c62b3404232 Mon Sep 17 00:00:00 2001 From: Alec Smecher Date: Tue, 7 Jan 2025 10:26:47 -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 2d0567f673..f343824971 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 ------------ #9566 : Convert session and cookie management to Laravel