hive
hive copied to clipboard
Lightweight and blazing fast key-value database written in pure Dart.
I am not sure about API, perhaps it may be implemented in a better way. Fork with this PR used in Fedi app - https://github.com/Big-Fig/Fediverse.app I combined two features in...
According to https://docs.hivedb.dev/#/custom-objects/type_adapters , the max `typeId` of Type Adapters is 223. If I understand correctly, this limits the number of different entity types that can be used in an...
In the first run, the data is correct, but after refreshing the page, you get castlist instead of List. This problem did not exist and it happened without changing the...
i'm sotring custom `List` this way `put(k, v)` in a hive box. after putting the data i'm able to access it. but when i restart the app data disappears. custom...
**Question** Why doesn't HIVE save data to disk on save()? For instance, if I use the save() function on a BOX, but then I terminate the process without properly closing...
**Question** I am trying to follow along with a short tutorial that introduces Hive within a small Flutter project. I am using the latest version of Flutter on an M1...
**Steps to Reproduce** - update a value from first tab (`box.put('darkMode', true)`) - read the value from second tab (`box.get('darkMode')`) - expected `true`, but it returns `false` even if the...
**Question** Sqflite benchmark doesn't use `batch` or `transaction`,meanings 1000 iterations performs 1000 transaction. I switch Sqflite's benchmark to batch, it seems better than before and better than hive on write....
**Context** This is possible to filter `listenable` using a key array (https://docs.hivedb.dev/#/basics/hive_in_flutter?id=valuelistenable), ```dart ValueListenableBuilder( valueListenable: Hive.box('settings').listenable(keys: ['firstKey', 'secondKey']), builder: (context, box, widget) { // build widget }, ) ``` **Question**...
I am running Cake Wallet on iOS. Whenever I try to access my wallet, I get this: Error: Hive Error: This should not happen. Please open an issue on GitHub....