X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=doc%2Fhtconfig.md;h=1f1b62bd49cf6262777c432e9f1137c24703c7f6;hb=c5c60d3d050ce2630197027a4b4375c00e270d95;hp=e09c37b74d196ae1423f4d41fabb8b1ea55f5c90;hpb=24513f6d9287684b5fa8cdb3bb35e37dd40fe2a7;p=friendica.git diff --git a/doc/htconfig.md b/doc/htconfig.md index e09c37b74d..1f1b62bd49 100644 --- a/doc/htconfig.md +++ b/doc/htconfig.md @@ -27,6 +27,7 @@ Example: To set the automatic database cleanup process add this line to your .ht * **always_show_preview** (Boolean) - Only show small preview picures. Default value is false. * **block_local_dir** (Boolean) - Blocks the access to the directory of the local users. * **auth_cookie_lifetime** (Integer) - Number of days that should pass without any activity before a user who chose "Remember me" when logging in is considered logged out. Defaults to 7. +* **config_adapter** (jit|preload) - Allow to switch the configuration adapter to improve performances at the cost of memory consumption. Default value is "jit" * **curl_range_bytes** - Maximum number of bytes that should be fetched. Default is 0, which mean "no limit". * **db_log** - Name of a logfile to log slow database queries * **db_loglimit** - If a database call lasts longer than this value it is logged @@ -58,9 +59,11 @@ Example: To set the automatic database cleanup process add this line to your .ht * **max_processes_backend** - Maximum number of concurrent database processes for background tasks. Default value is 5. * **max_processes_frontend** - Maximum number of concurrent database processes for foreground tasks. Default value is 20. * **min_poll_interval** - minimal distance in minutes between two polls for a contact. Default is 1. Reasonable values are between 1 and 59. -* **memcache** (Boolean) - Use memcache. To use memcache the PECL extension "memcache" has to be installed and activated. -* **memcache_host** - Hostname of the memcache daemon. Default is '127.0.0.1'. -* **memcache_port** - Portnumber of the memcache daemon. Default is 11211. +* **session_handler** (database|cache|native) - Whether to use Cache to store session data or to use PHP native session storage. Default value is `database`. +* **cache_driver** (database|memcache|memcached) - Whether to use Memcache or Memcached to store temporary cache. Default value is `database`. +* **memcache_host** - Host name of the memcache daemon. Default is '127.0.0.1'. +* **memcache_port** - Port number of the memcache daemon. Default is 11211. +* **memcached_hosts** - Array of Memcached servers info `[host, port(, weight)]`. Default value is `[['127.0.0.1', 11211]]`. * **no_count** (Boolean) - Don't do count calculations (currently only when showing albums) * **no_oembed** (Boolean) - Don't use OEmbed to fetch more information about a link. * **no_smilies** (Boolean) - Don't show smilies. @@ -69,6 +72,7 @@ Example: To set the automatic database cleanup process add this line to your .ht * **ostatus_poll_timeframe** - Defines how old an item can be to try to complete the conversation with it. * **paranoia** (Boolean) - Log out users if their IP address changed. * **permit_crawling** (Boolean) - Restricts the search for not logged in users to one search per minute. +* **queue_no_dead_check** (Boolean) - Ignore if the target contact or server seems to be dead during queue delivery. * **worker_debug** (Boolean) - If enabled, it prints out the number of running processes split by priority. * **worker_fetch_limit** - Number of worker tasks that are fetched in a single query. Default is 1. * **profiler** (Boolean) - Enable internal timings to help optimize code. Needed for "rendertime" addon. Default is false.