In computing, GiST or Generalized Search Tree, is a data structure and API that can be used to build a variety of disk-based search trees.
I'm using PostgreSQL 9.2 and have a table of IP ranges. Here's the SQL: CREATE TABLE ips ( id serial NOT NULL, …
postgresql indexing database-design range gist-indexI have been working on optimizing my Postgres databases recently, and traditionally, I've only ever use B-Tree indexes. However, I …
postgresql indexing b-tree gist-index