From 6f9565459290dfeff1115f4a5d2ae8c76f8c5c21 Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 14 Jan 2023 14:44:49 +0000 Subject: [PATCH] Added default config for the lock driver --- static/defaults.config.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/static/defaults.config.php b/static/defaults.config.php index b3175c5d73..a8fa44038d 100644 --- a/static/defaults.config.php +++ b/static/defaults.config.php @@ -364,6 +364,11 @@ return [ // If activated, all hashtags will point to the local server. 'local_tags' => false, + // lock_driver (semaphore|database|memcache|memcached|redis|apcu) + // Whether to use semaphores, the database, Memcache, Memcached, Redis or APCu to handle locks. + // Default is auto detection which tries semaphores first, then falls back to the cache driver. + 'lock_driver' => '', + // logger_config (String) // Sets the logging adapter of Friendica globally (monolog, syslog, stream) 'logger_config' => 'stream',