hive
hive copied to clipboard
Lightweight and blazing fast key-value database written in pure Dart.
I'm a bit worried because Hive and Isar seem to be a bit abandoned by Simon. It's been 3 months since the last commit and Simon isn't replying on Telegram...
**Question** How to avoid duplicating objects in datastore? What is the best practice let Hive know that the object must be overridden or ignored instead of duplicating. **Code sample** Future...
There is an error in the pub.dev documentation that can hinder beginners. Here you can see that the documentation suggests this code,  But when putting this in the...
Hi. I have a question, Is there any way to read .hive files without using HiveDB functions? I mean without using openbox, etc.
Hello, is there a way to have compact or compaction strategy for this loading option? BoxCollection has openBox with preload and boxCreator, but no compacting or strategy.
**Steps to Reproduce** 1. Create custom Adapter MainClass, create custom Adapter Property which is a property of A. Register 2. Write data 3. Remove adapter B 4. Read old data....
**Question** On iOS, Hive puts DB files in the user-readable documents area instead of the private app documents. Is this intentional, or is it just too hard to fix now...
Hi. I'm getting this exception in production, but I can't figure out why it is happening and I haven't been able to reproduce it in dev. Do you have any...
I have defined two boxes in `Hive` as follows: ```dart @HiveType(typeId: 1) class CartTable extends HiveObject { @HiveField(0) late int id; @HiveField(1) late String name; @HiveField(2) late String image; @HiveField(3)...
In our flutter project we want to encrypt our Hive database, and we want to know in case of decryption error, so we deactivate `crashRecovery`, and expect to catch one...