PostgreSQL Statistics, Indexes, and Pareto Data Distributions
making.close.com
PostgreSQL Statistics, Indexes, and Pareto Data Distributions
1–9 of 9 posts
Re: PostgreSQL Statistics, Indexes, and Pareto Data Distributions
#2Re: PostgreSQL Statistics, Indexes, and Pareto Data Distributions
#3Also: very clear and easy to follow language, props to the author. Cheers.
Re: PostgreSQL Statistics, Indexes, and Pareto Data Distributions
#4Re: PostgreSQL Statistics, Indexes, and Pareto Data Distributions
#5It’s amazing how many of those types of problems are easily avoided or solved with event sourcing and CQRS.
Re: PostgreSQL Statistics, Indexes, and Pareto Data Distributions
#6Well, what came to my head pretty quickly when reading this was "there should be separate tables";) Thank you for the article, I didn't know about the statistic configuration in postgres. I can use your lesson straight away, as I'm desining a database for online gaming platform and now I'm sure that there should be separate tables for currently running and finished games:) Also: very clear and easy to follow language…
https://www.postgresql.org/docs/current/ddl-partitioning.htm...
Re: PostgreSQL Statistics, Indexes, and Pareto Data Distributions
#7Hi HN community, author of the post here. Let me know please if you have any questions, comments, or feedback!
Re: PostgreSQL Statistics, Indexes, and Pareto Data Distributions
#8Hi HN community, author of the post here. Let me know please if you have any questions, comments, or feedback!
One of the best articles I've seen on here this year! I didn't know about the existence of `pg_hint_plan`.
Re: PostgreSQL Statistics, Indexes, and Pareto Data Distributions
#9Well, what came to my head pretty quickly when reading this was "there should be separate tables";) Thank you for the article, I didn't know about the statistic configuration in postgres. I can use your lesson straight away, as I'm desining a database for online gaming platform and now I'm sure that there should be separate tables for currently running and finished games:) Also: very clear and easy to follow language…
Good intuition and thank you! :) Not sure if this is a good fit for you, but you could consider using the partitioning built into Postgres to split one large logical table with all your games into a "hot" partition containing the currently running games and a "cold" partition containing your finished games. https://www.postgresql.org/docs/current/ddl-partitioning.htm...