hive
hive copied to clipboard
Hive not saving to disk?
In a Windows desktop application, I'm storing 8 custom types under different keys to a box using box.put(k, v)
. Printing the box.toMap()
shows all of the values correctly stored. When I restart and load the box, only 2-3 of the 8 types load in, and any further changes don't persist.
Is the box corrupting? This happens consistently in my project. It's somewhat large, so I'll try to recreate a minimal example tomorrow.
having the same issue
It looks like one of the recent updates introduced this breaking behavior. ~~Temporary fix: Downgrade to hive 2.0.0~~
After more testing, this is still happening on 2.0.0.
Is it reproducible if you do await put(...)
instead of put(...)
?
Is there a fix available for this?