NoSQL or SQL – how you make the choice?
I am developing SaaS solution and need to decide on a path forward with regards to database - SQL or noSQL (document db).
I am not technical, so are there any developers here that could advise on how would you go about deciding which approach to take?
10 comments
[ 4.3 ms ] story [ 33.0 ms ] threadA good way to estimate that is if you'll be mostly writing to the database instead of reading from it.
You can also go half-way with things like object storage in Postgres (jsonb fields), so that's usually a no-risk choice for a project in an early phase of development.
That's why Google is useful.
Good luck.
[0]: https://github.com/github/gh-ost/issues/331#issuecomment-266...