When did Postgres become cool?
21–30 of 182 posts
Re: When did Postgres become cool?
#22I picked PostgreSQL over MySQL for a project I did in 2005. I picked it since the project would benefit from many advantages which PostgreSQL already had over MySQL, and it would not particularly benefit from MySQL’s only often-touted advantage, speed. This turned out to be the correct choice, and this has not changed since.
Re: When did Postgres become cool?
#23Josh Berkus had a great talk on the history of Postgres forks and variants. Link below to slides from a version of this talk in 2009: https://www.slideshare.net/pgconf/elephant-roads-a-tour-of-p...
Re: When did Postgres become cool?
#24Re: When did Postgres become cool?
#25I picked PostgreSQL over MySQL for a project I did in 2005. I picked it since the project would benefit from many advantages which PostgreSQL already had over MySQL, and it would not particularly benefit from MySQL’s only often-touted advantage, speed. This turned out to be the correct choice, and this has not changed since.
why?
Re: When did Postgres become cool?
#26Postgres became cool when the scales fell off peoples eyes and they realized that very few use cases necessitate or even benefit from "NoSQL" databases.
Re: When did Postgres become cool?
#27Re: When did Postgres become cool?
#28i just love mysql's hackable storage engine (particularly the new lsmt engines), and i hate toast so much, not to mention the permission system which is so convoluted and it is so easy to shoot yourself in the foot. and of course it does not play nice with low iops ebs.
its too expensive to migrate from pg now, but i would avoid it in the future
i usually dont use super sophisticated sql, so mysql is actually pretty good for me considering i can tune the knobs on some tables pretty well.
Re: When did Postgres become cool?
#29So I would say it was already "cool" at that point (albeit not in wide use, at least in my circles).
We weren't too happy with Oracle (pricing), and we'd only moved to that after being unhappy with MySQL in 2000 (no transactions!). I think PostgreSQL would have been a good choice for us, and I did give it a try, but migrating all the data out of Oracle just didn't really seem possible (Oracle didn't provide great export tools as you can imagine, and a "SELECT col1 || "," || col2 .." type of thing to produce a CSV would have taken hours per table and we had a few dozen tables, so would have either resulted in days of downtime, or some funky logic with a lookup table to say which database a user was in and moving them over one-by-one, but then what about FKs? what about a "messages" table where one user sends a message to another? etc. So on Oracle we stayed until the end of the product around 2012.
Re: When did Postgres become cool?
#30What made postgres "cool" for me was the realisation that you get more than what you bargain for:
> More than "just a database", it's a data platform
This feeling of being also relevant for the evolving world of data engineerimg comes from noSQL functionality like JSON support and also extensions that allow graph operations.
So postgres is cool because it is a reliable workhorse that wont let you down but its codebase and community have also the DNA of a racehorse that can win an occasional race for you.
What else can you ask of a horse? :-)