| Class | Description |
|---|---|
| HashIndex |
A unique index based on an in-memory hash map.
|
| LobStorageBackend |
This class stores LOB objects in the database, in tables.
|
| NonUniqueHashCursor |
Cursor implementation for non-unique hash index
|
| NonUniqueHashIndex |
A non-unique index based on an in-memory hash map.
|
| PageBtree |
A page that contains index data.
|
| PageBtreeCursor |
The cursor implementation for the page b-tree index.
|
| PageBtreeIndex |
This is the most common type of index, a b tree index.
|
| PageBtreeLeaf |
A b-tree leaf page that contains index data.
|
| PageBtreeNode |
A b-tree node page that contains index data.
|
| PageDataIndex |
The scan index allows to access a row by key.
|
| PageDataLeaf |
A leaf page that contains data of one or multiple rows.
|
| PageDataNode |
A leaf page that contains data of one or multiple rows.
|
| PageDataOverflow |
Overflow data for a leaf page.
|
| PageDelegateIndex |
An index that delegates indexing to the page data index.
|
| PageIndex |
A page store index.
|
| PageStoreTable |
A table store in a PageStore.
|
| ScanCursor |
The cursor implementation for the scan index.
|
| ScanIndex |
The scan index is not really an 'index' in the strict sense, because it can
not be used for direct lookup.
|
| SpatialTreeIndex |
This is an index based on a MVR-TreeMap.
|
| TreeCursor |
The cursor implementation for a tree index.
|
| TreeIndex |
The tree index is an in-memory index based on a binary AVL trees.
|
PageStore tables and indexes.