A Short List of Noteworthy Extensions
Take a look at a list of some important extensions available in PostgreSQL.
We'll cover the following...
Here’s a list of noteworthy PostgreSQL extensions for application developers. The following extensions add new features to your RDBMS so that you can solve more use cases right inside the database.
Having more data processing tools in the database server is a good thing when you have complex problems to solve and want to have a solution that is both correct (from a transactional standpoint) and efficient (from a data flow standpoint). Several detailed examples of these points are discussed in this course.
List of extensions
Here’s a list of PostgreSQL contrib extensions for application developers:
-
Bloom Index Filters: Bloom provides an index access method based on bloom filters.
-
earthdistance
: This module provides two different approaches to calculating great circle distances on the surface of the Earth. The one described first depends on thecube
module (which must be installed before earthdistance can be installed). The second one is based on the built-in point data type, using longitude and latitude for the coordinates.In this module, the Earth is assumed to be perfectly spherical. (If that’s too inaccurate for you, you might want to look at the PostGIS project.)
-
hstore
: This module implements the hstore data type for storing sets of key/value pairs within a single PostgreSQL value. This can be useful in various scenarios, such as rows with many attributes that are rarely examined or semi-structured data. Keys and values ...