Welcome to release 1.0 of libgist, the GiST C++ library. Libgist is an implementation of the Generalized Search Tree, a template index structure that makes it easy to implement any type of hierarchical access method (AM). A new AM type is created by extending the core libgist classes with a class that encapsulates the high-level, data-oriented aspects of that AM. Currently, the libgist distribution comes prepackaged with a B-tree and an R-tree extension.

Libgist was designed to be a simple, low-overhead library that can be easily incorporated into applications that need fast access to the data they manage. It uses regular files for storage purposes and supports single-user access without transactional behavior. If you need multiuser access and/or recovery, wait for the upcoming SHORE release of libgist, which will provide the libgist functionality embedded in the SHORE object server.

This document should help you get the code installed, and get you writing your own index code quickly.


Table of Contents


Related Material


Comments, questions and suggestions may be directed to gist@postgres.berkeley.edu