tuweni / org.apache.tuweni.kv / MapDBKeyValueStore / open

open

@JvmStatic fun <K, V> open(dbPath: Path, keySerializer: Function<K, Bytes>, valueSerializer: Function<V, Bytes>, keyDeserializer: Function<Bytes, K>, valueDeserializer: Function<Bytes, V>): MapDBKeyValueStore<K, V> (source)

Open a MapDB-backed key-value store.

Parameters

dbPath - The path to the MapDB database.

keySerializer - the serializer of key objects to bytes

valueSerializer - the serializer of value objects to bytes

keyDeserializer - the deserializer of keys from bytes

valueDeserializer - the deserializer of values from bytes

Exceptions

IOException - If an I/O error occurs.

Return
A key-value store.

@JvmStatic fun open(dbPath: Path): MapDBKeyValueStore<Bytes, Bytes> (source)

Open a MapDB-backed key-value store using Bytes keys and values.

Parameters

dbPath - The path to the MapDB database.

Exceptions

IOException - If an I/O error occurs.

Return
A key-value store dealing with bytes.