I am planning a simple MMORPG, but even though it's a small, open source project, I'd like to have the best quality database. Which would be the best database software to use?
Examples:
SQL - MySQL, PostgreSQL, MSSQL ...
NoSQL - MongoDB, CouchDB ...
|
Questions on Game Development Stack Exchange are expected to relate to game development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
MySQL is free, is fast, can handle really big tables, is easy to use and you can find documentation and help extremely easy. I also know MySQL better than say PostgreSQL and that is why I chose that one for my persistent multiplayer game. Go with what you know best and if the worst case scenario happens (everyone wants to play your game and the DB knuckles) you can always change (or buy a faster server). |
|||||
|