PostgreSQL Outperforms MongoDB in New Round of Tests
blogs.enterprisedb.com
PostgreSQL Outperforms MongoDB in New Round of Tests
1–10 of 171 posts
Re: PostgreSQL Outperforms MongoDB in New Round of Tests
#2Url changed from http://developers-beta.slashdot.org/story/14/09/26/1330228/p..., which points to this.
Re: PostgreSQL Outperforms MongoDB in New Round of Tests
#3I have been using JSON types in postgres 9.3 for several weeks now. It's nice. It just works. I love being able to mix relational logic on static columns with undefined documents on dynamic columns, all in the same tables.
Re: PostgreSQL Outperforms MongoDB in New Round of Tests
#4Only 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
#5Since when MongoDB is considered as a database comparable with PostgreSQL?)
Re: PostgreSQL Outperforms MongoDB in New Round of Tests
#6Why does the graph read 2.4 when they say they're testing 2.6?
Re: PostgreSQL Outperforms MongoDB in New Round of Tests
#7Since when MongoDB is considered as a database comparable with PostgreSQL?)
It's a comparison on MongoDB's home turf, showing how well PostgreSQL works when used as a NoSQL document store.
Re: PostgreSQL Outperforms MongoDB in New Round of Tests
#8Since when MongoDB is considered as a database comparable with PostgreSQL?)
That's not really relevant, since the point is that Postgres can do what MongoDB does but faster.
Re: PostgreSQL Outperforms MongoDB in New Round of Tests
#9How does it compare to TokuMX?
I am a huge fan of PostgreSQL, but in order to avoid having to rewrite an application designed for Mongo, I tried TokuMX and was pleasantly surprised by its performance.
Re: PostgreSQL Outperforms MongoDB in New Round of Tests
#10Will 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.