No. I'm using room on everything but wasm, using KStore for wasm.
thank you color 2
s
soufianehamama9
10/20/2024, 9:11 PM
How i can implement storeOf in kotlin wasm
f
Fergus Hewson
10/20/2024, 9:42 PM
private val store: KStore<List<Timer>> = storeOf("myDb.db", default = emptyList())
p
Pablichjenkov
10/21/2024, 3:07 AM
Is KStore a database? Or a file persisting library
f
Fergus Hewson
10/21/2024, 6:19 AM
ORM type of thing, just writes serializaed objects to file. Not a DB, but good enough for a quick replacement solution.
👍 2
m
Michael Paus
10/21/2024, 12:11 PM
Until you try to store some serious amount of data. A single RAW image from my digital camera will blow it up already. WasmJs urgently needs some local mass storage to be useful (at least for me).