Tagged Questions
1
vote
1answer
105 views
How to model / where to store relational data between classes
I'm trying to figure out the best design here, and I can see multiple approaches, but none that seems "right."
There are three relevant classes here: Base, TradingPost, and Resource. Each Base has a ...
0
votes
3answers
208 views
Persistent Data for Multiplayer, Browser-Based Games
What is generally used to store persistent data in online games - browser games/facebook apps, in particular?
I have used MySQL in web development before - but I've read that it's not very scalable, ...
0
votes
4answers
367 views
Is there an in memory data store that is feasible for real time, non-networked games?
I would like to know if anyone has recommendations or experience with using an in memory data store for a real time, non-networked game. This is not necessarily for loading levels or saving data, but ...
9
votes
4answers
2k views
How to choose how to store data?
Give a man a fish and you feed him for a day. Teach a man to fish and you feed him for a lifetime.
- Chinese Proverb
I could ask what kind of data storage I should use for my actual project, ...
16
votes
6answers
2k views
Would it be better to use XML/JSON/Text or a database to store game content?
I'm considering how to implement a component-based game, as that seems to be the hot thing and I like the idea of such a flexible design. One of the features of such a design is that adding new ...