|
|
|
|
|
by silon7
3972 days ago
|
|
To me, a major important thing about NoSql is the predictable behavior (because all queries are simple and there is no "query optimizer"). If I could ensure SQL never using index/table scans and make it fail without proper indexes it would be a major help. |
|
Indeed, I find NoSQL very unpredictable. When your query hits and index, the query goes well. When not, you usually end up doing a whole database scan. Plus you usually cannot use more than one index for a given query, and some NoSQL require an index just for ordering....