Difference between revisions of "Database backends"
m (Spelling fixes) |
(Grammar/styling tweaks) |
||
Line 38: | Line 38: | ||
| style="background-color: #9F9;" | | | style="background-color: #9F9;" | | ||
'''Very good''' ''(always supported)'' | '''Very good''' ''(always supported)'' | ||
− | | style="text-align: center" | | + | | style="text-align: center" | ✔ |
− | | style="text-align: center" | | + | | style="text-align: center" | ✔ |
|- | |- | ||
| LevelDB | | LevelDB | ||
Line 48: | Line 48: | ||
| style="background-color: #FFB;" | | | style="background-color: #FFB;" | | ||
'''Mostly supported''' | '''Mostly supported''' | ||
− | | style="text-align: center" | | + | | style="text-align: center" | ✔ |
| | | | | | ||
|- | |- | ||
Line 58: | Line 58: | ||
| style="background-color: #FAA;" | | | style="background-color: #FAA;" | | ||
'''Inconvenient''' ''(redis server required)'' | '''Inconvenient''' ''(redis server required)'' | ||
− | | style="text-align: center" | | + | | style="text-align: center" | ✔ |
| | | | | | ||
|- | |- | ||
Line 68: | Line 68: | ||
| style="background-color: #FAA;" | | | style="background-color: #FAA;" | | ||
'''Inconvenient''' ''(PostgreSQL server required)'' | '''Inconvenient''' ''(PostgreSQL server required)'' | ||
− | | style="text-align: center" | | + | | style="text-align: center" | ✔ |
− | | style="text-align: center" | | + | | style="text-align: center" | ✔ |
|- | |- | ||
| Dummy | | Dummy | ||
Line 78: | Line 78: | ||
| | | | | | ||
'''N/A''' ''(nothing is saved to disk)'' | '''N/A''' ''(nothing is saved to disk)'' | ||
− | | style="text-align: center" | | + | | style="text-align: center" | ✔ |
− | | style="text-align: center" | | + | | style="text-align: center" | ✔ |
|} | |} | ||
Line 95: | Line 95: | ||
=== Redis === | === Redis === | ||
− | Redis support was added to Minetest in April 2014, | + | Redis support was added to Minetest in April 2014, Redis is mainly useful for servers as it allows multiple worlds to be stored in one Redis instance. You need to install it additionally (''libhiredis'' library). |
− | Information about setting up a | + | Information about setting up a Redis server can be found here: https://redis.io/topics/quickstart |
==== world.mt settings for Redis ==== | ==== world.mt settings for Redis ==== | ||
Line 113: | Line 113: | ||
PostgreSQL is an excellent alternative to Redis. It doesn't store all data in memory, only recent and frequent data is loaded into memory. All data is on disk storage and data storage is very robust. You can also easily interface a website in front of your database to offer a frontend to your users. | PostgreSQL is an excellent alternative to Redis. It doesn't store all data in memory, only recent and frequent data is loaded into memory. All data is on disk storage and data storage is very robust. You can also easily interface a website in front of your database to offer a frontend to your users. | ||
− | + | While we support older versions, it is recommended to use PostgreSQL 9.5 at least. | |
− | + | To improve PostgreSQL's performance with Minetest servers, please configure <code>postgresql.conf</code> with a minimum <code>shared_buffer</code> of 512MB, with a maximum of 50% of your server's available RAM. | |
==== world.mt for PostgreSQL ==== | ==== world.mt for PostgreSQL ==== |
Revision as of 17:40, 12 November 2017
Minetest supports several database backends. This page provides a comparison of all 4 (actually 5, but the dummy backend generally isn't useful) backends.
There are two database backends in Minetest (since 0.4.16)
- Map
- Players
Map backend
The database backend is set using the backend
setting in world.mt.
If you want to migrate a world map to a new backend, use minetestserver --migrate <name of new backend> --world <path to your world directory>
.
Player backend
The database backend is set using the player_backend
setting in world.mt.
If you want to migrate players to a new backend, use minetestserver --migrate-players <name of new backend> --world <path to your world directory>
.
Comparison table
Backend | Speed | Reliability | Compatibility with builds | Map | Players |
---|---|---|---|---|---|
SQLite3 |
Good |
Acceptable (problems can arise with concurrent accesses) |
Very good (always supported) |
✔ | ✔ |
LevelDB |
Good |
Good |
Mostly supported |
✔ | |
Redis |
Very good (data kept in RAM) |
Good |
Inconvenient (redis server required) |
✔ | |
PostgreSQL |
Very good (most used data are in memory, other are fetched from disk) |
Very good |
Inconvenient (PostgreSQL server required) |
✔ | ✔ |
Dummy |
Blazing fast |
N/A (nothing is saved to disk) |
N/A (nothing is saved to disk) |
✔ | ✔ |
The Compatibility with builds column is only relevant if you want to distribute the worlds.
SQLite3
SQLite3 is the default backend for all Minetest worlds, it is supported by every Minetest build and is therefore the standard database format that is used to distribute worlds.
LevelDB
LevelDB is mostly used on servers because of its improved reliability and possibly speed. You need to install it additionally.
Redis
Redis support was added to Minetest in April 2014, Redis is mainly useful for servers as it allows multiple worlds to be stored in one Redis instance. You need to install it additionally (libhiredis library).
Information about setting up a Redis server can be found here: https://redis.io/topics/quickstart
world.mt settings for Redis
redis_address
-- The IP or hostname of the redis server.
redis_port
-- The port of the redis server. Optional, default: 6379
redis_hash
-- Hash where the MapBlocks are stored in, if you want multiple worlds in one redis instance this needs to be different for each world. If you don't need that you can use e.g. IGNORED
.
PostgreSQL
PostgreSQL support was added to Minetest in May 2016, it's mainly useful for servers as it allows multiple worlds in a single instance, in multiple databases.
PostgreSQL is an excellent alternative to Redis. It doesn't store all data in memory, only recent and frequent data is loaded into memory. All data is on disk storage and data storage is very robust. You can also easily interface a website in front of your database to offer a frontend to your users.
While we support older versions, it is recommended to use PostgreSQL 9.5 at least.
To improve PostgreSQL's performance with Minetest servers, please configure postgresql.conf
with a minimum shared_buffer
of 512MB, with a maximum of 50% of your server's available RAM.
world.mt for PostgreSQL
pgsql_connection
-- PostgreSQL connection string for world map | host=<db_host> user=<db_user> password=<db_password> dbname=<db_name>
pgsql_player_connection
-- PostgreSQL connection string for players | host=<db_host> user=<db_user> password=<db_password> dbname=<db_name>
Dummy
A dummy database backend, which stores all MapBlocks in RAM without saving them and will most likely not be of any use for you.