TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

The Art of PostgreSQL

151 pointsby _JamesA_over 5 years ago

8 comments

jfbaroover 5 years ago
I am going to buy the book for two reasons.One for its content and Two to somehow thank Dimitri Fontain for all his work on Postgres. He is one of the main Postgresql contributors.
评论 #20754284 未加载
war1025over 5 years ago
Looked at the website and didn&#x27;t really get much of a feel for what was actually in the book.<p>I will say though, having a good knowledge of SQL (we use Postgres where I work) can help you do some really neat things.<p>There are probably three or four large new features I&#x27;ve added to our system in the past couple years that have boiled down to &quot;Pre-process the input and then ask Postgres for the answer&quot;<p>Databases are very powerful. They are even more powerful when you know how to use them right.
评论 #20754248 未加载
评论 #20754287 未加载
mmckelvyover 5 years ago
I&#x27;m a web developer (React &#x2F; Node.js) and I bought the first edition of this book (it was called Mastering PostgreSQL in Application Development then). I can say that it really changed the way I approach building apps. I definitely lean on the database <i>a lot</i> more now. No more &quot;models&quot;, ORMs &#x2F; query builders, and crunching data in app code. Just build your schema, write plain sql queries, and you&#x27;re off to the races. As a bonus, I&#x27;m also much more comfortable with Postgres&#x27; built in command line tool, psql.<p>The scope of the book is pretty broad. You&#x27;ll cover psql setup, a little relational theory, some nuts and bolts about the inner workings of Postgres, indexing strategy, data types, aggregates, window functions, common table expressions, etc. Given the scope, it&#x27;s difficult to cover everything in depth, so I&#x27;d treat this book as more of an introduction to what&#x27;s possible.<p>Highly recommended.
评论 #20756540 未加载
评论 #20755545 未加载
评论 #20754926 未加载
radicalriddlerover 5 years ago
Can anyone speak to the quality of this book. Been looking to learn PostgreSQL and get a better understanding of SQL.
评论 #20754480 未加载
评论 #20754347 未加载
评论 #20761747 未加载
评论 #20754222 未加载
samwestdevover 5 years ago
I wish they published at least the book index
评论 #20755690 未加载
vldrover 5 years ago
So I need to subscribe to a mailinglist in order to get the index&#x2F;free chapter? No thanks.
aldoushuxley001over 5 years ago
Anybody know if this book touches on the more recent features added into Postgresql for Full-Text Search? Hard to tell what&#x27;s in the contents. Seems like a great resource though.
评论 #20754358 未加载
einpoklumover 5 years ago
Don&#x27;t use PostgreSQL or MySQL&#x2F;MariaDB for analytic work - they&#x27;re super-slow at that. Try systems like MonetDB, ClickHouse (not a full DBMS) etc: <a href="https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;List_of_column-oriented_DBMSes" rel="nofollow">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;List_of_column-oriented_DBMSes</a> Column stores are where it&#x27;s at.<p>(Not relevant if you need to process transactions.)
评论 #20757136 未加载