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.

An interview on what makes Postgres unique: extensions

96 pointsby hgimenezover 5 years ago

5 comments

edoceoover 5 years ago
My little business uses PG. Had a unique need for PK IDs. It was pretty easy to make a little extension in C to generate them for us, and linking in PG was super easy (but the .so has to be on replica before loading) and we only used the TEXT type cause I didn't want to figure out making a new 128bit data-type. But can't do this in RDS.
评论 #21590983 未加载
thomover 5 years ago
Postgres has all sorts of great stories for customisation. It does custom aggregates better than MySQL or SQL Server, for example, because you can just write them in SQL with not hassle.
roenxiover 5 years ago
Storing data is the most universal task in the software ecosystem. Data storage will be confronted as a problem by everyone even tangentially related to software - the Truly Inspired Software Engineer, the Almost Incompetent Software Engineer, the Developer, the Manager, the Lawyers. The Customers will care, sooner or later it becomes their problem. The Subcontractors care. Even the Government cares about data storage.<p>It is a not a problem where &#x27;unique&#x27; or &#x27;customised&#x27; are competitive advantages. &#x27;Boring&#x27;, &#x27;available&#x27;, &#x27;reliable&#x27; and &#x27;well understood&#x27; are competitive advantages. Relational databases are a great way to store small quantities of arbitrary data and PostgreSQL is a textbook relational database.
评论 #21592560 未加载
评论 #21591351 未加载
anonuover 5 years ago
I don&#x27;t think I can get any extensions loaded if I use RDS. They&#x27;ve basically handicapped what I&#x27;m reading is one of the most useful features of postgres
评论 #21592470 未加载
scarejunbaover 5 years ago
If RDS won&#x27;t support the extension, it might as well not exist. Well, almost might as well. I&#x27;m lucky I don&#x27;t need sfcgal but if I did I might give up on RDS.
评论 #21592455 未加载