The-Fireplace-Minecraft-Mods / Grand-Exchange

A new take on Minecraft Multiplayer Marketplaces
GNU General Public License v2.0
3 stars 3 forks source link

Alternative database formats #20

Open The-Fireplace opened 4 years ago

The-Fireplace commented 4 years ago

Add an option for alternative database formats. json may be most readable, but a SQL database would be more efficient.

Tophattingson commented 4 years ago

SQLite would be preferable if going down that route, as it is file based rather than server based. Regardless minecraft may not scale well enough with high playercounts to even benefit from going fancier than .json. Are there any existing mods that use SQL / SQLite?

The-Fireplace commented 4 years ago

If you're asking specifically about Forge mods, I'm not sure. I know LuckPerms has options for quite a few storage types, including SQLite and H2 for local databases, as well as multiple remote databases and config file based storage systems.