]> begriffs open source - ai-pg/blob - full-docs/txt/indexes.txt
Convert HTML docs to more streamlined TXT
[ai-pg] / full-docs / txt / indexes.txt
1
2 Chapter 11. Indexes
3
4    Table of Contents
5
6    11.1. Introduction
7    11.2. Index Types
8
9         11.2.1. B-Tree
10         11.2.2. Hash
11         11.2.3. GiST
12         11.2.4. SP-GiST
13         11.2.5. GIN
14         11.2.6. BRIN
15
16    11.3. Multicolumn Indexes
17    11.4. Indexes and ORDER BY
18    11.5. Combining Multiple Indexes
19    11.6. Unique Indexes
20    11.7. Indexes on Expressions
21    11.8. Partial Indexes
22    11.9. Index-Only Scans and Covering Indexes
23    11.10. Operator Classes and Operator Families
24    11.11. Indexes and Collations
25    11.12. Examining Index Usage
26
27    Indexes are a common way to enhance database performance. An index
28    allows the database server to find and retrieve specific rows much
29    faster than it could do without an index. But indexes also add overhead
30    to the database system as a whole, so they should be used sensibly.