Merge pull request #12671 from annando/lock-config

Added default config for the lock driver
This commit is contained in:
Hypolite Petovan 2023-01-14 09:50:38 -05:00 committed by GitHub
commit 79d1506694
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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',