hive icon indicating copy to clipboard operation
hive copied to clipboard

Lightweight and blazing fast key-value database written in pure Dart.

Results 277 hive issues
Sort by recently updated
recently updated
newest added

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...

question

There is an error in the pub.dev documentation that can hinder beginners. Here you can see that the documentation suggests this code, ![Documentation error](https://github.com/isar/hive/assets/63758301/38e8ac37-21f8-4a24-beb4-da3c318303c7) 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....

problem

**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...

question

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...

question

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)...

question

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...