|
|
|
|
|
by extrapickles
3138 days ago
|
|
In general a SQL db will be a better choice for CRUD apps. They get slow if you try to recreate a SQL engine in your DB abstraction layer rather than letting the SQL engine do all the work. NoSQL db should be used if you are doing something that they are designed for (eg: storing data that can’t have a schema). |
|