Uses of Class
io.permazen.kv.mvcc.MutableView
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.Utility classes for MVCC type operations using a
KVStore
.AtomicKVStore
and KVDatabase
implementations based
on H2 MVStore.KVDatabase
implementation based on Google Cloud Spanner.-
Uses of MutableView in io.permazen.kv.array
Modifier and TypeMethodDescriptionprotected ArrayKVTransaction
ArrayKVDatabase.createSnapshotKVTransaction
(MutableView view, long baseVersion) -
Uses of MutableView in io.permazen.kv.caching
Modifier and TypeFieldDescriptionprotected final MutableView
CachingKVTransaction.view
TheMutableView
that accumulates any mutations. -
Uses of MutableView in io.permazen.kv.leveldb
Modifier and TypeMethodDescriptionprotected LevelDBKVTransaction
LevelDBKVDatabase.createSnapshotKVTransaction
(MutableView view, long baseVersion) -
Uses of MutableView in io.permazen.kv.mvcc
Modifier and TypeMethodDescriptionMutableView.clone()
Clone this instance.SnapshotKVTransaction.getMutableView()
Get theMutableView
associated with this instance.Modifier and TypeMethodDescriptionprotected SnapshotKVTransaction
SnapshotKVDatabase.createSnapshotKVTransaction
(MutableView view, long baseVersion) Instantiate a newSnapshotKVTransaction
instance.ModifierConstructorDescriptionprotected
SnapshotKVTransaction
(SnapshotKVDatabase kvdb, MutableView view, long baseVersion) Constructor. -
Uses of MutableView in io.permazen.kv.mvstore
Modifier and TypeMethodDescriptionprotected MVStoreKVTransaction
MVStoreKVDatabase.createSnapshotKVTransaction
(MutableView view, long baseVersion) -
Uses of MutableView in io.permazen.kv.spanner