1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>49.4.Examples</title>
<link rel="stylesheet" href="stylesheet.css" type="text/css">
<link rev="made" href="pgsql-docs@postgresql.org">
<meta name="generator" content="DocBook XSL Stylesheets V1.70.0">
<link rel="start" href="index.html" title="PostgreSQL 8.1.4 Documentation">
<link rel="up" href="gist.html" title="Chapter49.GiST Indexes">
<link rel="prev" href="gist-implementation.html" title="49.3.Implementation">
<link rel="next" href="gist-recovery.html" title="49.5.Crash Recovery">
<link rel="copyright" href="ln-legalnotice.html" title="Legal Notice">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="sect1" lang="en">
<div class="titlepage"><div><div><h2 class="title" style="clear: both">
<a name="gist-examples"></a>49.4.Examples</h2></div></div></div>
<p> The <span class="productname">PostgreSQL</span> source distribution includes
several examples of index methods implemented using
<acronym class="acronym">GiST</acronym>. The core system currently provides R-Tree
equivalent functionality for some of the built-in geometric data types
(see <code class="filename">src/backend/access/gist/gistproc.c</code>). The following
<code class="filename">contrib</code> modules also contain <acronym class="acronym">GiST</acronym>
operator classes:
</p>
<div class="variablelist"><dl>
<dt><span class="term">btree_gist</span></dt>
<dd><p>B-Tree equivalent functionality for several data types</p></dd>
<dt><span class="term">cube</span></dt>
<dd><p>Indexing for multi-dimensional cubes</p></dd>
<dt><span class="term">intarray</span></dt>
<dd><p>RD-Tree for one-dimensional array of int4 values</p></dd>
<dt><span class="term">ltree</span></dt>
<dd><p>Indexing for tree-like structures</p></dd>
<dt><span class="term">pg_trgm</span></dt>
<dd><p>Text similarity using trigram matching</p></dd>
<dt><span class="term">seg</span></dt>
<dd><p>Indexing for “<span class="quote">float ranges</span>”</p></dd>
<dt><span class="term">tsearch2</span></dt>
<dd><p>Full text indexing</p></dd>
</dl></div>
</div></body>
</html>
|