friendica-github/doc/Improve-Performance.md

83 lines
2.9 KiB
Markdown
Raw Normal View History

How to improve the performance of a Friendica site
2013-10-07 21:19:47 +00:00
==============
* [Home](help)
Feel free to ask in the [Friendica support group](https://forum.friendi.ca/profile/helpers) if you need some clarification about the following instructions or if you need help in any other way.
2013-10-07 21:19:47 +00:00
System configuration
--------
Please go to /admin/site/ on your system and change the following values:
Set "JPEG image quality" to 50.
This value reduces the data that is send from the server to the client. 50 is a value that doesn't influences image quality too much.
Enable "Use MySQL full text engine"
When using MyISAM (default) or InnoDB on MariaDB 10 this speeds up search.
2013-10-07 21:19:47 +00:00
Addons
2013-10-07 21:19:47 +00:00
--------
Active the following addons:
2013-10-07 21:19:47 +00:00
rendertime
2018-04-24 11:20:44 +00:00
### rendertime
2013-10-07 21:19:47 +00:00
This addon doesn't speed up your system.
It helps to analyze your bottlenecks.
2013-10-07 21:19:47 +00:00
When enabled you see some values at the bottom of every page.
They show your performance problems.
2013-10-07 21:19:47 +00:00
Performance: Database: 0.244, Network: 0.002, Rendering: 0.044, Parser: 0.001, I/O: 0.021, Other: 0.237, Total: 0.548
Database: This is the time for all database queries
Network: Time that is needed to fetch content from external sites
Rendering: Time for theme rendering
Parser: The time that the BBCode parser needed to create the output
I/O: Time for local file access
Others: Everything else :)
Total: The sum of all above values
Apache Webserver
2013-10-07 21:19:47 +00:00
--------
The following Apache modules are recommended:
2013-10-07 21:19:47 +00:00
2018-04-24 11:20:44 +00:00
### Cache-Control
2013-10-07 21:19:47 +00:00
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.
Please add the following lines to your site configuration in the "directory" context.
ExpiresActive on ExpiresDefault "access plus 1 week"
2013-10-07 21:19:47 +00:00
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.
2013-10-07 21:19:47 +00:00
2018-04-24 11:20:44 +00:00
### Compress content
2013-10-07 21:19:47 +00:00
This module compresses the traffic between the web server and the client.
Enable the module "mod_deflate" by typing in "a2enmod deflate" as root.
Also see the Apache [2.2](http://httpd.apache.org/docs/2.2/mod/mod_deflate.html) / [2.4](https://httpd.apache.org/docs/2.4/mod/mod_deflate.html) documentation.
2013-10-07 21:19:47 +00:00
PHP
--------
2018-04-24 11:20:44 +00:00
### FCGI
2013-10-07 21:19:47 +00:00
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".
2013-10-07 21:19:47 +00:00
Please refer to external documentation for a more detailed explanation how to set up a system based upon FCGI.
2013-10-07 21:19:47 +00:00
2018-04-24 11:20:44 +00:00
### Database
2013-10-07 21:19:47 +00:00
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.
2013-10-07 21:19:47 +00:00
Please enable the slow query log. This helps to find performance problems.