I´ve started using Sqlite instead of mySql to hold information about objects in the game.
This is mostly because Sqlite uses 1 file as the database and don´t require a (dedicated) host to serve the database like mySql does.
So in my case, I can put a .sqlite file in the game-project and skip extra configuration-steps for the development-server and production-server since most PHP-servers include the sqlite-pdo as default.
Less CPU-overhead is also nice.
