Uses of Class
io.permazen.kv.util.ForwardingKVStore
Package
Description
A simple
KVStore
implementation based on a sorted array of key/value pairs.Caching
KVStore
and KVDatabase
layers.KVDatabase
implementation based on LevelDB.KVDatabase
implementation based on LMDB.Utility classes for MVCC type operations using a
KVStore
.AtomicKVStore
and KVDatabase
implementations based
on H2 MVStore.A partition-tolerant
KVDatabase
that automatically migrates between a clustered
RaftKVDatabase
and a private non-clustered "standalone mode"
KVDatabase
, based on availability of the Raft cluster.KVDatabase
implementation based on Google Cloud Spanner.KVDatabase
implementations based on SQL connections.Utility classes relating to the
KVDatabase
interface.KVDatabase
implementation based on Xodus.-
Uses of ForwardingKVStore in io.permazen.kv.array
-
Uses of ForwardingKVStore in io.permazen.kv.caching
Modifier and TypeClassDescriptionclass
A caching layer for read-onlyKVStore
's that have high latency for individual reads but low latency for consecutive key/value pairs in aKVStore.getRange()
range read. -
Uses of ForwardingKVStore in io.permazen.kv.leveldb
Modifier and TypeClassDescriptionclass
AnAtomicKVStore
view of a LevelDB database.class
LevelDBKVDatabase
transaction. -
Uses of ForwardingKVStore in io.permazen.kv.lmdb
Modifier and TypeClassDescriptionclass
LMDBKVTransaction
usingbyte[]
arrays buffers.class
LMDB transaction viewed as aKVTransaction
. -
Uses of ForwardingKVStore in io.permazen.kv.mvcc
-
Uses of ForwardingKVStore in io.permazen.kv.mvstore
-
Uses of ForwardingKVStore in io.permazen.kv.raft.fallback
-
Uses of ForwardingKVStore in io.permazen.kv.spanner
-
Uses of ForwardingKVStore in io.permazen.kv.sql
-
Uses of ForwardingKVStore in io.permazen.kv.util
Modifier and TypeClassDescriptionclass
AForwardingKVStore
also implementingCloseableKVStore
, with some associated underlyingCloseable
resource to close whenCloseableForwardingKVStore.close()
'd.class
class
class
Provides a read-only view of an underlyingKVStore
. -
Uses of ForwardingKVStore in io.permazen.kv.xodus