KVDatabase implementation based on a AtomicArrayKVStore, providing concurrent transactions
and linearizable ACID semantics.ArrayKVStore.KVStore based on a sorted array of key/value pairs.ArrayKVDatabase transaction.ArrayKVStore index, key, and value data, given a sorted sequence of key/value pairs.AtomicKVStore based on ArrayKVStore with background compaction.mutate() must wait
for a background compaction to complete as we start nearing the high water mark.KVStore implementation based on a sorted array of key/value pairs.AtomicArrayKVStore used by this instance.ScheduledExecutorService used to schedule background compaction.Copyright © 2016. All rights reserved.