Postgres is eating the database world
31–40 of 147 posts
Re: Postgres is eating the database world
#32One thing I've always liked about MySQL is that it pretty much looks after itself, whereas with Postgres I've had issues before doing upgrades (this was with brew though) and I'm not clear on whether it looks after itself for vacuuming etc.
Should I just give it a go the next time I'm upgrading? It does seem like a tool I need to get familiar with.
Re: Postgres is eating the database world
#33Is there an extension that can make it compete with TigerBeetle for transaction processing speed?
Re: Postgres is eating the database world
#34Postgres is such a great tool. The feature I'd love to see added that has been kicking around the mailing list for ages now would be incremental view maintenance. Being able to keep moderately complex analysis workloads fresh in realtime would be such a boon.
Materialized views with pg_cron to refresh them? (Or even just cron and your usual interface, if you don't want to install something extra)
It means complex views that could take minutes or hours to calculate from scratch can be kept fresh in realtime.
Re: Postgres is eating the database world
#35Alright I'm convinced, I'm using postgres for my next project. Anyone have any experiences with it and Entity Framework Core?
Re: Postgres is eating the database world
#36I have a handful of sites I run on a VPS with a basic setup, including MySQL. One thing I've always liked about MySQL is that it pretty much looks after itself, whereas with Postgres I've had issues before doing upgrades (this was with brew though) and I'm not clear on whether it looks after itself for vacuuming etc. Should I just give it a go the next time I'm upgrading? It does seem like a tool I need to get famili…
Re: Postgres is eating the database world
#37Postgres is still single-node-first, and while Citus exists I'm skeptical that it can ever become as easy to administer as a true HA-first datastore. For me the reason to use something like Cassandra or Kafka was never "big data" per se, it was having true master-master fault tolerance out of the box in a way that worked with everything.
Re: Postgres is eating the database world
#38Postgres is such a great tool. The feature I'd love to see added that has been kicking around the mailing list for ages now would be incremental view maintenance. Being able to keep moderately complex analysis workloads fresh in realtime would be such a boon.
Re: Postgres is eating the database world
#39Postgres is such a great tool. The feature I'd love to see added that has been kicking around the mailing list for ages now would be incremental view maintenance. Being able to keep moderately complex analysis workloads fresh in realtime would be such a boon.
Materialized views with pg_cron to refresh them? (Or even just cron and your usual interface, if you don't want to install something extra)
Re: Postgres is eating the database world
#40Alright I'm convinced, I'm using postgres for my next project. Anyone have any experiences with it and Entity Framework Core?
All recent projects in my company are PostgreSQL based (> 2000 production applications), and we have far fewer troubles with PostgreSQL than with Oracle, not to mention the licensing.