]> git.mxchange.org Git - friendica.git/blobdiff - static/defaults.config.php
Improve post direction display
[friendica.git] / static / defaults.config.php
index 8111a68f1aadb4c75d54f03debf3e14fbf6d9908..4d595010ce5f92525560d86883be14b78c508a7b 100644 (file)
@@ -62,6 +62,13 @@ return [
                // disable_pdo (Boolean)
                // PDO is used by default (if available). Otherwise MySQLi will be used.
                'disable_pdo' => false,
+
+               // persistent (Boolean)
+               // This controls if the system should use persistent connections or not.
+               // Persistent connections increase the performance.
+               // On the other hand the number of open connections are higher,
+               // this will most likely increase the system load.
+               'persistent' => false,
        ],
        'config' => [
                // admin_email (Comma-separated list)
@@ -82,6 +89,10 @@ return [
                'php_path' => 'php',
        ],
        'system' => [
+               // adjust_poll_frequency (Boolean)
+               // Automatically detect and set the best feed poll frequency.
+               'adjust_poll_frequency' => false,
+
                // allowed_link_protocols (Array)
                // Allowed protocols in links URLs, add at your own risk. http(s) is always allowed.
                'allowed_link_protocols' => ['ftp://', 'ftps://', 'mailto:', 'cid:', 'gopher://'],
@@ -115,8 +126,8 @@ return [
                // Minimal period in minutes between two calls of the "Cron" worker job.
                'cron_interval' => 5,
 
-               // cache_driver (database|memcache|memcached|redis)
-               // Whether to use Memcache or Memcached or Redis to store temporary cache.
+               // cache_driver (database|memcache|memcached|redis|apcu)
+               // Whether to use Memcache, Memcached, Redis or APCu to store temporary cache.
                'cache_driver' => 'database',
 
                // config_adapter (jit|preload)
@@ -331,7 +342,7 @@ return [
 
                // min_poll_interval (Integer)
                // minimal distance in minutes between two polls for a contact. Reasonable values are between 1 and 59.
-               'min_poll_interval' => 1,
+               'min_poll_interval' => 15,
 
                // no_count (Boolean)
                // Don't do count calculations (currently only when showing photo albums).
@@ -488,6 +499,11 @@ return [
                // Setting 0 would allow maximum worker queues at all times, which is not recommended.
                'worker_load_exponent' => 3,
 
+               // worker_multiple_fetch (Boolean)
+               // When activated, the worker fetches jobs for multiple workers (not only for itself).
+               // This is an experimental setting without knowing the performance impact.
+               'worker_multiple_fetch' => false,
+               
                // worker_defer_limit (Integer)
                // Per default the systems tries delivering for 15 times before dropping it.
                'worker_defer_limit' => 15,