Jvm Level DB
Functions
Performs a batch operation on the LevelDB database.
Compacts the range of keys between the specified start and end keys in the LevelDB database.
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.
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.
Executes a provided action within the context of a LevelDB snapshot. This method ensures that the action runs with a consistent view of the database at the time the snapshot is created.