Package org.kodein.db.kv

Types

DBLoggerFactory
Link copied to clipboard
common
data class DBLoggerFactory(loggerFactory: LoggerFactory) : LevelDBOptions
FailOnBadClose
Link copied to clipboard
common
data class FailOnBadClose(failOnBadClose: Boolean) : LevelDBOptions
FillRawCache
Link copied to clipboard
common
data class FillRawCache(fillCache: Boolean) : Options.Reads
Should the data read for this iteration be cached in memory?
FsSync
Link copied to clipboard
common
data class FsSync(sync: Boolean) : Options.Writes
If true, the write will be flushed from the operating system buffer cache (by calling WritableFile::Sync()) before the write is considered complete.
KeyValueBatch
Link copied to clipboard
common
interface KeyValueBatch : KeyValueWrite, Closeable
KeyValueCursor
Link copied to clipboard
common
interface KeyValueCursor : BaseCursor
KeyValueDB
Link copied to clipboard
common
interface KeyValueDB : KeyValueRead, KeyValueWrite, Closeable
KeyValueRead
Link copied to clipboard
common
interface KeyValueRead
KeyValueSnapshot
Link copied to clipboard
common
interface KeyValueSnapshot : KeyValueRead, Closeable
KeyValueWrite
Link copied to clipboard
common
interface KeyValueWrite
LevelDBOptions
Link copied to clipboard
common
sealed class LevelDBOptions : Options.Open
TrackClosableAllocation
Link copied to clipboard
common
data class TrackClosableAllocation(trackClosableAllocation: Boolean) : LevelDBOptions
VerifyChecksum
Link copied to clipboard
common
data class VerifyChecksum(verifyChecksums: Boolean) : Options.Reads
If true, all data read from underlying storage will be verified against corresponding checksums.