|
|
|
|
|
by _bxg1
2234 days ago
|
|
The couple of times I've made something with Mongo, I've always just found myself defining a schema in the source code anyway. As long as some code eventually reads the data there's no such thing as "no schema", there's just "multiple" or "less precise" schemas: https://utcc.utoronto.ca/~cks/space/blog/programming/Databas... All this is to say: from a software engineering standpoint I like defining my schema rigidly at the DB level. The added flexibility that NoSQL provides is not something I actually find desirable. That said, I've never had to share one of these DBs with other programmers. |
|