MongoDB and PostgreSQL thoughts

前端 未结 6 2028
伪装坚强ぢ
伪装坚强ぢ 2020-12-24 02:19

I\'ve got an app fully working with PostgreSQL. After reading about MongoDB, I was interested to see how the app would work with it. After a few weeks, I migrated the whole

6条回答
  •  半阙折子戏
    2020-12-24 02:50

    First of all postgres is an RDBMS and MongoDB is NoSQL .
    but Stand-alone NoSQL technologies do not meet ACID standards because they sacrifice critical data protections in favor of high throughput performance for unstructured applications.

    Postgres 9.4 providing NoSQL capabilities along with full transaction support, storing JSON documents with constraints on the fields data.

    so you will get all advantages from both RDBMS and NoSQL

    check it out for detailed article http://www.aptuz.com/blog/is-postgres-nosql-database-better-than-mongodb/

    To experience Postgres' NoSQL performance for yourself. Download the pg_nosql_benchmark at GitHub. here is the link https://github.com/EnterpriseDB/pg_nosql_benchmark

提交回复
热议问题