jNaimXIII / Shiritori

Shiritori (しりとり) is a Japanese word game in which the players are required to say a word which begins with the final kana of the previous word, but this one is in English.
https://shiritori.fun
GNU General Public License v3.0
1 stars 1 forks source link

Decide on a database to use #13

Open jNaimXIII opened 1 year ago

jNaimXIII commented 1 year ago

The game has highly relational data, so PostgreSQL is my primary choice. If anyone has any other database to suggest, you are free to do so.

After we've decided on the database to use, we'll model the data accordingly into a proper schema.

jNaimXIII commented 1 year ago

I've changed my mind about the relational database approach to this. As I've mentioned before, the data is highly relational and since every game and player will individually keep track of the words and other such data, there's going to be too much repetition.

So, I explored the Neo4J graph database and mocked the data in that. So far I'm really pleased with how it works.

image