Level DBReader
interface LevelDBReader
Interface for reading from a LevelDB database. Provides methods for getting values and iterating over key-value pairs.
Inheritors
Functions
Link copied to clipboard
abstract fun scan(from: String? = null, verifyChecksums: Boolean = false, fillCache: Boolean = true): CloseableSequence<LevelDBReader.LazyEntry>
Creates an Iterable to traverse all key-value pairs in the LevelDB database. The sequence will start from the specified key, or from the first key if no key is specified. LevelDB sorts keys in lexicographic order.