I want to know the key points of why we choose SQL over NOSql or vice versa. Currently GAE support for the SQL. Which one is better and why?
closed as not constructive by matt, Ian Roberts, Daniel Roseman, Jocelyn, Justin Satyr Nov 22 '12 at 2:31
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
If you need to optimize your DB for speed and costs, I prefer the NDB datastore. Here is nice video about the "battle" between the app engine datastore and appengine SQL: https://developers.google.com/events/io/sessions/gooio2012/306/ The app engine OO datastore is also very flexible, because you do not have schema constraints. Have you ever changed your SQL schema and done a data migration during agile project development? |
|||
|
|
|
This is a very subjective. There is no answer that will cover all scenarios. Relational DBs have strengths and weaknesses. NoSQL DBs sometimes solve some weaknesses of relational DBs but at a cost. There is no silver bullet. What is your use case? Do you have an existing relational DB? Do you have some problems with your current DB architecture that you are looking to solve with a NoSQL DB? A good read about several popular relations DBs can be found here and recommended as a starting point: http://www.christof-strauch.de/nosqldbs.pdf |
|||
|
|
|
Oversimplification: NoSQL wins on:
SQL:
|
|||
|
|