Anyone made the jump from MySQL to PostreSQL? It is worth it?
11–20 of 121 posts
Re: Anyone made the jump from MySQL to PostreSQL? It is worth it?
#12https://news.ycombinator.com/item?id=12166585
FWIW I prefer PostgreSQL.
Re: Anyone made the jump from MySQL to PostreSQL? It is worth it?
#13I'm actually all in on PostgreSQL at this point -- I'm not bothering with trying to use vanilla SQL and worrying about switching databases but I have that luxury on my side projects. PostgreSQL has a lot of interesting features that I am happy to use and I frankly never really relied on using vanilla SQL in order to be database server agnostic anyway (not saying that doesn't have a place and maybe someone will reply with how it was absolutely essential for their X but...).
To be clear, I still am all for portable SQL queries but I no longer worry about relying on a feature only PostgreSQL offers and/or taking advantage of things it offers that are not part of the standard.
Re: Anyone made the jump from MySQL to PostreSQL? It is worth it?
#14This strikes me as bike shedding. If you have a specific problem that you believe will be solved by the migration, do it. Otherwise, users will benefit more if you focus on changes based on their value, not what part of your tech stack looks better on Reddit.
Re: Anyone made the jump from MySQL to PostreSQL? It is worth it?
#15Re: Anyone made the jump from MySQL to PostreSQL? It is worth it?
#16Re: Anyone made the jump from MySQL to PostreSQL? It is worth it?
#17Is it worth it? In our case, BIG YES. But most of the times I don't think it would be. Migrating data isn't that big of a job, but rewriting the queries are. If you use an ORM for that majority of the queries the switch may be simple.
Re: Anyone made the jump from MySQL to PostreSQL? It is worth it?
#18Re: Anyone made the jump from MySQL to PostreSQL? It is worth it?
#19The best part of moving to PostgreSQL is that it is sort of the defacto standard wire protocol for relational databases now and that enables you to "grow into" something like CockroachDB down the line when you need that sort of scale.
Re: Anyone made the jump from MySQL to PostreSQL? It is worth it?
#20I have on all my personal projects but I wouldn't bother with an existing project unless I had a specific need that PostgreSQL met (and MySQL did not). I'm actually all in on PostgreSQL at this point -- I'm not bothering with trying to use vanilla SQL and worrying about switching databases but I have that luxury on my side projects. PostgreSQL has a lot of interesting features that I am happy to use and I frankly nev…
Stick with SQL and you can keep that skill mostly the same across different SQL products. And obviously you will sooner or later hit some performance penalty when you start writing complex ORM and ORM starts spitting out SQL without thinking and then your only solution is to complain on GitHub issue as you can't solve it.