hive_ce
v2.19.3Hive Community Edition - A spiritual continuation of Hive v2
Package archive: https://pubdev.letsnova.ru/api/archives/hive_ce/2.19.3.tar.gz
dart pub add hive_ceReadme
Fast, Enjoyable & Secure NoSQL Database
Hive is a lightweight and blazing fast key-value database written in pure Dart. Inspired by Bitcask.
Documentation & Samples 📖
Features
- 🚀 Cross platform: mobile, desktop, browser
- ⚡ Great performance (see benchmark)
- ❤️ Simple, powerful, & intuitive API
- 🔒 Strong encryption built in
- 🎈 NO native dependencies
- 🔋 Batteries included
New features in Hive CE
Hive CE is a spiritual continuation of Hive v2 with the following new features:
- Hive CE Inspector DevTools extension
- Quickly and easily inspect the content of Hive boxes
- Isolate support through
IsolatedHive - Flutter web WASM support
- Automatic type adapter generation using the
GenerateAdaptersannotation- No more manually adding annotations to every type and field
- Generate adapters for classes outside the current package
- A
HiveRegistrarextension that lets you register all your generated adapters in one call - Extends the maximum type ID from
223to65439 - Support for constructor parameter defaults
- Support for Sets
- A built in Duration adapter
- Freezed support
- Support for generating adapters with classes that use named imports
Benchmark
This is a comparison of the time to complete a given number of write operations and the resulting database file size:
| Operations | Hive CE Time | IsolatedHive Time | Hive CE Size | Hive v4 Time | Hive v4 Size |
|---|---|---|---|---|---|
| 10 | 0.00 s | 0.00 s | 0.00 MB | 0.00 s | 1.00 MB |
| 100 | 0.00 s | 0.01 s | 0.01 MB | 0.01 s | 1.00 MB |
| 1000 | 0.02 s | 0.03 s | 0.11 MB | 0.06 s | 1.00 MB |
| 10000 | 0.13 s | 0.25 s | 1.10 MB | 0.64 s | 5.00 MB |
| 100000 | 1.40 s | 2.64 s | 10.97 MB | 7.26 s | 30.00 MB |
| 1000000 | 19.94 s | 41.50 s | 109.67 MB | 84.87 s | 290.00 MB |
Database size in Hive v4 is directly affected by the length of field names in model classes which is not ideal. Also Hive v4 is much slower than Hive CE for large numbers of operations.
IsolatedHive is slower than Hive, but it is much faster than Hive v4 and you still get the benefit of multiple isolate support.
The benchmark was performed on an M3 Max MacBook Pro. You can see the benchmark code here.
Getting Started
Hive CE requires Dart 3. Ensure that you have the following in your pubspec.yaml file:
environment:
sdk: ^3.0.0
Usage
You can use Hive just like a map. It is not necessary to await Futures.
import 'package:hive_ce/hive_ce.dart';
void example() {
final box = Hive.box('myBox');
box.put('name', 'David');
final name = box.get('name');
print('Name: $name');
}
Changelog
2.19.3
- IsolatedHive: Handles stale send ports on hot restart
2.19.2
- Updates
isolate_channelto0.6.0
2.19.1
- Updates
isolate_channelto0.4.0
2.19.0
2.18.0
- Fixes an issue with IsolatedHive encryption
- Automatically disables the unsafe isolate warning when running in a test
2.17.0
- Fixes WASM int decoding (by @flrnsbt in #262)
- Adds nested primitive support to
CollectionBox - Adds more options to the logger to ignore specific warnings
2.16.0
- Implements a proper logging system
- Adds
hive_ce.dartto make the publish action happy
2.15.1
- Moves most of the documentation to the new documentation site
2.15.0
- Adds
ignoredFieldsparameter toAdapterSpecfor excluding specific fields from type adapter generation (by @rezam92 in #229)
2.14.0
- Adds the ability to override type adapters by type (by @sportismygame in #217)
- Fixes some
Futurehandling issues
2.13.3
- Adds copy to clipboard functionality to the inspector
2.13.2
- Removes the print statement from the inspector
2.13.1
- Fixes the first column header not showing in the inspector
2.13.0
- Adds the Hive CE Inspector DevTools extension
2.12.0
- Notify with the value of a deleted frame instead of
null - Improves adapter of same type warning
2.11.4
- Handles exception thrown during compaction on some platforms
- Updates documentation for
IsolatedHive
2.11.3
- Prints warning when writing integers greater than 2^53
2.11.2
- Fixes web compatibility check
- Fixes
deleteFromDisknot completing on web
2.11.1
- Allows boxes of primitive iterables
2.11.0
- Isolate support through
IsolatedHive - Warning messages for potentially unsafe isolate usage
- Updates suggested placement of
GenerateAdaptersannotation - Fixes custom objects in
BoxCollection. Custom objects must now be json serializable. - Adds much more information to the unknown typeId error message
- Supports
freezeddefault values - Enforces that boxes of type
Mapmust beMap<dynamic, dynamic> - Enforces that boxes of type
Iterablemust beIterable<dynamic> - Adds
reservedTypeIdstoGenerateAdaptersannotation
2.10.1
- Fixes
HiveObjectdisposal in lazy boxes
2.10.0
- Raises the maximum type ID from 223 to 65439
2.9.0
- Prints a warning when writing
intorList<int>types in a WASM environment - Only emits print statements when assertions are enabled (aka debug mode)
2.8.0+3
- Updates the commit hash for the transitive Hive dependencies workaround
2.8.0+2
- Adds workaround for transitive Hive dependencies to README
2.8.0+1
- Adds tutorial link to README
2.8.0
- Adds
GenerateAdaptersannotation and relevant documentation
2.7.0+1
- Adds a storage benchmark to compare Hive CE with Hive v4
2.7.0
- No longer reinitializes
Hivewhen opening aBoxCollection
2.6.0
- Adds
TargetKind.parametertoHiveFieldto supportfreezed
2.5.0+2
- Adds documentation for adding new fields (@vizakenjack)
- Updates README badges
2.5.0+1
- Documentation updates for
HiveFieldin support ofhive_ce_generatorchanges
2.5.0
- Adds
Targetannotations toHiveFieldandHiveTypeto prevent invalid usage - Bumps
analyzerto^6.5.0to deal with deprecations - Bumps
metato^1.14.0forTargetKind.enumValue
2.4.4
- Loosens constraint on
web
2.4.3
- Loosens constraint on
meta
2.4.2
- Only shows the adapter with same type warning if the adapters have different type ids
2.4.1
- Upgrades
package:webto1.0.0
2.4.0+1
- Adds a guide to migrate from
hive - Adds documentation for the new
HiveRegistrarextension created byhive_ce_generator
2.4.0
- Adds support for Sets
- Adds a built in
DurationAdapter - Adds a warning if attempting to register multiple adapters for the same type
2.3.0
- The first release of Hive Community Edition
- Supports Flutter web WASM compilation
- Fixes analysis issues
