|
|
|
|
|
by dahart
3173 days ago
|
|
I don't know of any mandatory books or theory about NoSQL, I picked it up on the fly using Firebase for a web app. Not affiliated, but I'm a reasonably happy customer. It's super easy to learn, and they have lots of tips and pointers about how to use it well, as I'm sure others do. Their tips are here, and I think this applies to most/all NoSQL (someone correct me if I'm wrong.) https://firebase.google.com/docs/database/web/structure-data The tl;dr is: - Avoid complex queries. Structure data so that you can make simple queries that execute fast. - Avoid nesting & flatten data as much as is reasonable. NoSQL is easier to learn & use than SQL, there's lower barrier to entry, but the trade off is that it's less powerful than SQL, so you have to keep your data simple too. |
|
Isn't this contradictory?