IKmpKvStore

interface IKmpKvStore

KmpKvStore is a multiplatform key value store that allows persistent storage of any data

All KmpKvStore and KmpKvStoreNode methods are blocking and should be run in a coroutine on Dispatchers.IO

Desktop/JVM: You may need to add the java.sql module:

compose.desktop {
nativeDistributions {
modules("java.sql")
}
}

iOS: You may need to add the linker flag -lsqlite3

WASM: Using LocalStorage has a limited amount of storage (5MiB). IndexedDB can use more storage but the exact amount depends on the browser. https://developer.mozilla.org/en-US/docs/Web/API/Storage_API/Storage_quotas_and_eviction_criteria

Inheritors

Functions

Link copied to clipboard
abstract suspend fun openNode(nodeName: String): Outcome<IKmpKvStoreNode, Any>