Документ взят из кэша поисковой машины. Адрес оригинального документа : http://www.sai.msu.su/~megera/postgres/gist/tsearch/V2/docs/oscon_tsearch2/gist.html
Дата изменения: Unknown
Дата индексирования: Sat Dec 22 10:27:27 2007
Кодировка:

Поисковые слова: lmc
Open Source Convention
 Previous   Next 

GiST (Generalized Search Tree)

  • A GiST index is a template indexing structure that allows domain experts to adhere to an interface and index custom data types.
  • Must implement the following methods- consistent, union, compress, decompress, penalty, picksplit, same.
  • Writes to GiST indexes lock the whole index. Writes to btree indexes only lock the affected index page.
  • Knowledge of C is required to write custom GiST indexes.