X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=doc%2FImprove-Performance.md;h=1d0a859f1f27bf4dec2ca5511ec1256e1fbb8021;hb=927a8c00c0823d6cf607de28fa7b4dc2db584648;hp=8c0529bd562eead5872d36a6b62176fa68894688;hpb=ed13034e23935c0c2e8f1c6311bae10b06a2c7e9;p=friendica.git diff --git a/doc/Improve-Performance.md b/doc/Improve-Performance.md index 8c0529bd56..1d0a859f1f 100644 --- a/doc/Improve-Performance.md +++ b/doc/Improve-Performance.md @@ -22,16 +22,16 @@ If you have many OStatus contacts then completing of conversations can take some When using MyISAM (default) or InnoDB on MariaDB 10 this speeds up search. -Plugins +Addons -------- -Active the following plugins: +Active the following addons: rendertime -###rendertime +### rendertime -This plugin doesn't speed up your system. +This addon doesn't speed up your system. It helps to analyze your bottlenecks. When enabled you see some values at the bottom of every page. @@ -52,7 +52,7 @@ Apache Webserver The following Apache modules are recommended: -###Cache-Control +### Cache-Control This module tells the client to cache the content of static files so that they aren't fetched with every request. Enable the module "mod_expires" by typing in "a2enmod expires" as root. @@ -62,7 +62,7 @@ Please add the following lines to your site configuration in the "directory" con Also see the Apache [2.2](http://httpd.apache.org/docs/2.2/mod/mod_expires.html) / [2.4](https://httpd.apache.org/docs/2.4/mod/mod_expires.html) documentation. -###Compress content +### Compress content This module compresses the traffic between the web server and the client. Enable the module "mod_deflate" by typing in "a2enmod deflate" as root. @@ -72,15 +72,15 @@ Also see the Apache [2.2](http://httpd.apache.org/docs/2.2/mod/mod_deflate.html) PHP -------- -###FCGI +### FCGI When using Apache think about using FCGI. In a Debian-based distribution you will need to install the packages named "php5-cgi" and "libapache2-mod-fcgid". Please refer to external documentation for a more detailed explanation how to set up a system based upon FCGI. -###Database +### Database -There are scripts like [tuning-primer.sh](http://www.day32.com/MySQL/) and [mysqltuner.pl](http://mysqltuner.pl) that analyze your database server and give hints on values that could be changed. +There are scripts like [tuning-primer.sh](https://github.com/BMDan/tuning-primer.sh) and [mysqltuner.pl](https://github.com/major/MySQLTuner-perl/blob/master/mysqltuner.pl) that analyze your database server and give hints on values that could be changed. Please enable the slow query log. This helps to find performance problems.