The PostgreSQL extension: How to Find It
Explore the process of finding and using PostgreSQL extensions, including contrib modules and those from the PostgreSQL Extension Network. Learn the basics of authoring your own extensions in various languages and understand how extensions improve database management and integration.
Finding PostgreSQL extensions
The first set of interesting extensions that should be available on any PostgreSQL installation is the contribs themselves. Make sure the operating system package for contribs is always deployed everywhere you’re using PostgreSQL so that you can then put those wonderful extensions to good use.
Some of the contrib extensions are meant to debug tricky situations, and you’ll be happy that diagnostics are only a create extension command away when you need to find out if a table or an index is corrupted, for instance.
Another source of ...