Package | Description |
---|---|
org.fusesource.hawtdb.api |
The HawDB client API
|
org.fusesource.hawtdb.internal.index |
Index implementations.
|
Modifier and Type | Interface and Description |
---|---|
interface |
SortedIndex<Key,Value>
Provides Key/Value storage and retrieval.
|
Modifier and Type | Method and Description |
---|---|
Index<Key,Value> |
IndexFactory.create(Paged paged) |
Index<Key,Value> |
HashIndexFactory.create(Paged paged)
Creates a new hash index on the Paged object.
|
<Key,Value> |
MultiIndexFactory.create(String indexName,
IndexFactory<Key,Value> indexFactory)
Create a new named index.
|
Index<Key,Value> |
IndexFactory.open(Paged paged) |
Index<Key,Value> |
HashIndexFactory.open(Paged paged)
Loads an existing hash index from the paged object.
|
Index<Key,Value> |
IndexFactory.open(Paged paged,
int indexNumber) |
Index<Key,Value> |
HashIndexFactory.open(Paged paged,
int indexNumber)
Loads an existing hash index from the paged object.
|
<Key,Value> |
MultiIndexFactory.open(String indexName,
IndexFactory<Key,Value> indexFactory)
Open named index.
|
Index<Key,Value> |
IndexFactory.openOrCreate(Paged paged) |
Index<Key,Value> |
HashIndexFactory.openOrCreate(Paged paged) |
<Key,Value> |
MultiIndexFactory.openOrCreate(String indexName,
IndexFactory<Key,Value> indexFactory)
Open or create the named index.
|
Modifier and Type | Class and Description |
---|---|
class |
BTreeIndex<Key,Value>
A variable magnitude b+tree indexes with support for optional
simple-prefix optimization.
|
class |
HashIndex<Key,Value>
Hash Index implementation.
|
Copyright © 2009–2016 FuseSource, Corp.. All rights reserved.