Package | Description |
---|---|
messif.buckets |
Storage classes capable of holding
objects . |
messif.buckets.impl |
Bucket implementations.
|
messif.buckets.index |
Bucket indexes for improved access.
|
messif.buckets.index.impl |
Implementation of bucket indexes.
|
messif.buckets.storage |
Bucket physical storage support.
|
messif.buckets.storage.impl |
Implementations of physical bucket storage.
|
messif.netbucket.replication |
Replication support for remote buckets.
|
Modifier and Type | Method and Description |
---|---|
protected abstract ModifiableIndex<LocalAbstractObject> |
LocalBucket.getModifiableIndex()
Returns the index (including storage) for this bucket.
|
Modifier and Type | Class and Description |
---|---|
class |
AlgorithmStorageBucket
This is a LocalBucket that allows to create buckets backed by an Algorithm.
|
Modifier and Type | Field and Description |
---|---|
protected ModifiableIndex<LocalAbstractObject> |
DiskBlockBucket.objects
Object storage
|
protected ModifiableIndex<LocalAbstractObject> |
MemoryStorageBucket.objects
Object storage
|
Modifier and Type | Method and Description |
---|---|
protected ModifiableIndex<LocalAbstractObject> |
AlgorithmStorageBucket.getModifiableIndex() |
protected ModifiableIndex<LocalAbstractObject> |
DiskBlockBucket.getModifiableIndex() |
protected ModifiableIndex<LocalAbstractObject> |
MemoryStorageBucket.getModifiableIndex() |
protected ModifiableIndex<LocalAbstractObject> |
PlainStorageBucket.getModifiableIndex() |
Constructor and Description |
---|
PlainStorageBucket(long capacity,
long softCapacity,
long lowOccupation,
boolean occupationAsBytes,
ModifiableIndex<LocalAbstractObject> index)
Creates a new instance of PlainStorageBucket.
|
Modifier and Type | Interface and Description |
---|---|
interface |
ModifiableOrderedIndex<C,T>
Defines a modifiable ordered index interface on objects.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractArrayIndex<K,T>
Implementation of index that stores the indexed data in a sorted array.
|
class |
AddressStorageIndex<K,T>
Implementation of a single index over generic storage.
|
class |
IntStorageIndex<K,T>
Implementation of a single index over a
storage with integer addresses . |
class |
LongStorageIndex<K,T>
Implementation of a single index over a
storage with long addresses . |
class |
LongStorageMemoryIndex<K,T>
Implementation of disk (long) index that stores the indexed data in a sorted array and keeps the
keys to be compared always in memory.
|
class |
LongStorageMemoryIndexStdSer<K,T>
Implementation of disk (long) index that stores the indexed data in a sorted array and keeps the
keys to be compared always in memory.
|
Modifier and Type | Interface and Description |
---|---|
interface |
IntStorageIndexed<T>
Interface of an integer storage that supports searching.
|
interface |
LongStorageIndexed<T>
Interface of a long storage that supports searching.
|
interface |
StorageIndexed<T>
Interface of a generic storage that supports searching.
|
Modifier and Type | Class and Description |
---|---|
class |
DatabaseStorage<T>
Database-based storage.
|
class |
DiskStorage<T>
Disk based storage.
|
class |
DiskStorageFillGaps<T>
Disk based storage inheriting almost everything from
DiskStorage . |
class |
MemoryStorage<T>
Memory based storage.
|
Modifier and Type | Method and Description |
---|---|
protected ModifiableIndex<LocalAbstractObject> |
ReplicationBucket.getModifiableIndex() |