Let's say an mmo was being created with the features of being first person view, having one world everyone plays in (like eve online), and being a sandbox game. What database would best suit it's needs in terms of cap theorem? CA, AP, CP and why?
feedback
|
|
All of the tenants of CAP theory must be worked around in MMOs. The DB is not going to do all the heavy lifting - the server application is just as important, if not more so. Video games need faster response times than a DB is going to be capable of providing. That isn't to say that IT infrastructure and architectural work isn't in place at all levels to squeeze out bottlenecks wherever possible, but the DB is not the only piece responsible for a smooth MMO experience. Most work in the MMO server process is likely committed to memory first, and only spooled out to the DB afterwards. You don't need your DB to have even a 200ms response time if you're just going to cache everything you need quick access for at application startup. If you don't do this caching, then you aren't going to get 200ms response times to the client, no matter how fast or aggressive your DB is. Memory with correct data structures is just faster. With all that caching, most of the CAP guarantees become less meaningful and less important. From the wiki article on CAP theorem:
This does not match the requirements of MMOs. MMO server processes are not stateless, and don't simply contain soft-state (cached data). They will aggressively pre-cache tons of world data in order to make up for the DB's lack of ability to provide guarantees of nearly instantaneous response time. Examples of how MMOs will work around each of these (basically, caching):
So out of these, | |||
|
feedback
|