Live data from Hacker News

PostgreSQL Outperforms MongoDB in New Round of Tests

blogs.enterprisedb.com

1–10 of 171 posts

Re: PostgreSQL Outperforms MongoDB in New Round of Tests

#4
Only problem I have with JSON on Postgres is you can't update a property of a JSON object like so:

    update table set jsonCol->propertyA = 42;
You need to write an extension for that. Easiest to do so using Python but sadly Heroku doesn't support python on postgres since its unsafe.

Re: PostgreSQL Outperforms MongoDB in New Round of Tests

#10
Will be great if PostgreSQL ends up as a storage engine option in MongoDB like InnoDB. Then you have the better engine of PostgreSQL with the superior clustering, sharding and end user experience of MongoDB.

That said these articles are pretty pointless. Performance isn't the reason companies are switching to MongoDB.

Post reply on HN