|
|
|
|
|
by hardwaresofton
4086 days ago
|
|
Generally, if you have a relatively large chunks of non-relational data, you can use a document store. I could imagine the data model for superheroes being a fit for documents - information on one super hero is not tightly coupled to another super hero. Sure you could normalize some of the abilities and what not, but the main chunk that you'll be searching by/storing is a Super Hero (or whatever you want to call that object). Also, note that document stores support somethings that you would consider relational (ex. RethinkDB supports joins), so the lines are becoming blurred these days. |
|
I think a document store is the worst way to store this kind of stuff.
imho, ymmv.