]> git.mxchange.org Git - friendica.git/blobdiff - static/defaults.config.php
Merge remote-tracking branch 'upstream/2021.12-rc' into api-fixes
[friendica.git] / static / defaults.config.php
index 8997a60d732e4fb382bc9256ed08a0105bfd2785..0cfc2f65826f4fa6489f0a4a549cd9ac176a26ea 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2020, Friendica
+ * @copyright Copyright (C) 2010-2021, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -55,9 +55,8 @@ return [
 
                // pdo_emulate_prepares (Boolean)
                // If enabled, the builtin emulation for prepared statements is used.
-               // When enabled, a workaround is used to ensure that the returned field types are correct,
-               // since by standard all returned values are casted as strings.
-               'pdo_emulate_prepares' => false,
+               // This can be used as a workaround for the database error "Prepared statement needs to be re-prepared".
+               'pdo_emulate_prepares' => true,
 
                // disable_pdo (Boolean)
                // PDO is used by default (if available). Otherwise MySQLi will be used.
@@ -122,6 +121,10 @@ return [
                // Deny public access to the local user directory.
                'block_local_dir' => false,
 
+               // blocked_tags (String)
+               // Comma separated list of hash tags that shouldn't be displayed in the trending tags
+               'blocked_tags' => '',
+
                // community_no_sharer (Boolean)
                // Don't display sharing accounts on the global community
                'community_no_sharer' => false,
@@ -195,6 +198,10 @@ return [
                // If it is not running and hadn't been terminated normally, it will be started automatically.
                'daemon_watchdog' => false,
 
+               // delete_sleeping_processes (Boolean)
+               // Periodically delete waiting database processes.
+               'delete_sleeping_processes' => false,
+
                // diaspora_test (Boolean)
                // For development only. Disables the message transfer.
                'diaspora_test' => false,
@@ -244,10 +251,6 @@ return [
                // Number of "free" searches when system => permit_crawling is enabled.
                'free_crawls' => 10,
 
-               // frontend_worker_timeout (Integer)
-               // Value in minutes after we think that a frontend task was killed by the webserver.
-               'frontend_worker_timeout' => 10,
-
                // groupedit_image_limit (Integer)
                // Number of contacts at which the group editor should switch from display the profile pictures of the contacts to only display the names.
                // This can alternatively be set on a per account basis in the pconfig table.
@@ -292,6 +295,12 @@ return [
                // on detected mobile devices
                'itemspage_network_mobile' => 20,
 
+               // jpeg_quality (Integer)
+               // 
+               // Lower numbers save space at cost of image detail
+               // where n is between 1 and 100, and with very poor results below about 50
+               'jpeg_quality' => 100,
+
                // like_no_comment (Boolean)
                // Don't update the "commented" value of an item when it is liked.
                'like_no_comment' => false,
@@ -356,6 +365,10 @@ return [
                // If you don't want to set a maximum length, set to -1.
                'max_image_length' => -1,
 
+               // max_likers (Integer)
+               // Maximum number of "people who like (or don't like) this"  that we will list by name
+               'max_likers' => 75,
+
                // max_processes_backend (Integer)
                // Maximum number of concurrent database processes for background tasks.
                'max_processes_backend' => 5,
@@ -406,10 +419,6 @@ return [
                // Don't show smilies.
                'no_smilies' => false,
 
-               // optimize_items (Boolean)
-               // Triggers an SQL command to optimize the item table before expiring items.
-               'optimize_items' => false,
-
                // paranoia (Boolean)
                // Log out users if their IP address changed.
                'paranoia' => false,
@@ -430,10 +439,6 @@ return [
                // Enable internal timings to help optimize code. Needed for "rendertime" addon.
                'profiler' => false,
 
-               // proxy_cache_time (Integer)
-               // Period in seconds after which the cache is cleared.
-               'proxy_cache_time' => 86400,
-
                // pushpoll_frequency (Integer)
                // Frequency of contact poll for subhub contact using the DFRM or OStatus network.
                // Available values:
@@ -539,6 +544,11 @@ return [
                // Number of worker tasks that are fetched in a single query.
                'worker_fetch_limit' => 1,
 
+               // worker_fork (Boolean)
+               // Experimental setting. Use pcntl_fork to spawn a new worker process.
+               // Does not work when "worker_multiple_fetch" is enabled (Needs more testing)
+               'worker_fork' => false,
+
                // worker_jpm (Boolean)
                // If enabled, it prints out the jobs per minute.
                'worker_jpm' => false,
@@ -556,6 +566,7 @@ return [
                // 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.
+               // Does not work when "worker_fork" is enabled (Needs more testing)
                'worker_multiple_fetch' => false,
                
                // worker_defer_limit (Integer)
@@ -563,7 +574,7 @@ return [
                'worker_defer_limit' => 15,
 
                // xrd_timeout (Integer)
-               // Timeout in seconds for fetching the XRD links.
+               // Timeout in seconds for fetching the XRD links and other requests with an expected shorter timeout
                'xrd_timeout' => 20,
        ],
        'experimental' => [