mongodb - NoSQL good solution for daily data? -


i'm developing restaurant application , there daily orders particular guests. because of daily base of data thought use nosql database e.g. mongodb avoid lot of joins in relational database (e.g. meal of order particular day of particular guest ). other data guest data (pre name, last name ....) stored in relational database. think? nosql database solution type of problem?

thanks

i stick traditional rdbms - unless project learn/understand mongodb/other, normal rdbms going achieve want more easily.

databases in style of mongo offer number of advantages on traditional rdbmss, these advantages in areas such as:

  • handling/processing immense (web-scale?) quantities of not-particularly-structured data
  • providing very quick performance on cheaper hardware
  • providing easy clustering maximum uptime

the application describe on other hand unlikely need near-bulletproof uptime, , unlikely need process/store massive quantities of data quickly.

your data sounds structured clearly-defined relationships, , busy restaurant not going produce amounts of data justify sharding/clustering in mongodb style of things.

so, unless looking project learn mongodb, recommend sticking traditional database.


Comments

Popular posts from this blog

apache - Add omitted ? to URLs -

redirect - bbPress Forum - rewrite to wwww.mysite prohibits login -

php - How can I stop spam on my custom forum/blog? -