@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Explicitly note MariaDB as alternative

Summary:
MariaDB can be used as an alternative of MySQL since years. MariaDB has better performance than MySQL [1][2] and is default alias for mysql-server in many linux distros. Thus, we need to clearly mention MariaDB as an alternative, add minimum required version, etc.

[1] https://smalldatum.blogspot.com/2024/04/sysbench-on-small-server-mariadb-and.html
[2] https://smalldatum.blogspot.com/2024/04/sysbench-on-less-small-server-mariadb.html

Test Plan:
Test on MariaDB 10.5.29 (e.g. Debian bullseye).

Also test on MariaDB 10.11.11 (e.g. Debian bookworm).

Reviewers: O1 Blessed Committers, valerio.bozzolan

Reviewed By: O1 Blessed Committers, valerio.bozzolan

Subscribers: mainframe98, aklapper, tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Differential Revision: https://we.phorge.it/D26082

Minsoo Choo 555fb3a8 be6a3542

+4 -2
+4 -2
src/docs/user/installation_guide.diviner
··· 16 16 - basic sysadmin skills; 17 17 - Apache, nginx, or another webserver; 18 18 - PHP; 19 - - MySQL (you will need a server with multiple databases); 19 + - MySQL or MariaDB (you will need a server with multiple databases); 20 20 - git 21 21 22 22 The remainder of this document details these requirements. ··· 77 77 78 78 You will also need: 79 79 80 - - **MySQL**: You need MySQL. The required version is MySQL 8.0 or newer. 80 + - **MySQL or MariaDB**: You need MySQL or MariaDB. The minimum required 81 + version is 8.0 MySQL and 10.5.1 for MariaDB. 81 82 You will need a server with multiple databases. 83 + From now on, both will be referred to as MySQL. 82 84 - **PHP**: You need a PHP engine: 83 85 - PHP 7 - 7.2.25 or newer. 84 86 - PHP 8 - 8.0 or newer.