hive 4.0.0-dev.0 hive: ^4.0.0-dev.0 copied to clipboard
Lightweight and buzzing-fast key-value database made for Flutter and Dart.
Fast, Enjoyable & Secure NoSQL Database
Hive is a lightweight and buzzing-fast key-value database made for Flutter and Dart.
Features ๐ #
- ๐ Bee everywhere: mobile, desktop, browser
- ๐ Buzzing speed: Hive's wings flap faster than the rest!
- ๐ก Sweet, powerful, & intuitive API
- ๐ Queen's Guard on duty: Encryption is built right in.
- ๐ง Thinking in swarms: Hive supports multiple isolates.
- ๐ฏ Hive comes with everything a bee needs and more!
Bee fact: A single bee can visit 5,000 flowers in a day!
Buzz into Action ๐ #
Feeling the excitement? Great! Let's help you take your first flight with Hive.
๐ Add dependencies
To kickstart the journey add hive
, isar_flutter_libs
and path_provider
to your pubspec.yaml
.
dependencies:
hive: ^4.0.0
isar_flutter_libs: ^4.0.0-dev.13
path_provider: ^2.1.0
Pssst! ๐คซ path_provider
will help you to find the optimal directory for each platform.
๐ก Designate a Home
Hive needs a place to call home. Using path_provider
we can find a valid directory.
void main() async {
WidgetsFlutterBinding.ensureInitialized();
final dir = await getApplicationDocumentsDirectory();
Hive.defaultDirectory = dir.path;
// ...
}
๐ And... Action!
Woohoo! You're all set. Jump in and let your Hive adventure begin!
import 'package:hive/hive.dart';
final box = Hive.box();
box.put('name', 'David');
final name = box.get('name');
print('Name: $name');
Bee fact: Honeybees can fly at a speed of up to 30 kilometers per hour!
๐ Hive Handbook #
In Hive, data is neatly organized into containers known as boxes. Think of boxes as tables you'd find in SQL, but far more flexible โ they don't stick to a set structure and can contain a variety of data. Boxes can be encrypted to store sensitive data.
Table of Contents #
Want to jump to a specific section? Here's a handy table of contents:
- Opening Boxes
- Closing Boxes
- Inserting
- Reading
- Deleting
- Using Boxes like Lists
- Type safety
- Non-primitive Objects
- Transactions
- FAQ
Bee fact: Bees have five eyes โ three simple eyes on top of the head, and two compound eyes, with numerous hexagonal facets.
๐ฆ Opening Boxes #
Your journey with Hive begins with opening your first box. Trust me, it's unbee-lievably easy:
final box = Hive.box(name: 'myBox');
When you call Hive.box(name: 'myBox')
for the first time with a given name, Hive will create a new box for you. If you call it again with the same name, Hive will return the already existing box.
You can also use Hive.box()
without providing a name. In this case, Hive will return the default box.
There are optional parameters you can pass to Hive.box()
:
Parameter | Description |
---|---|
name |
Label your box with a distinct name |
directory |
Select a home for your box. If omitted, Hive uses the defaultDirectory . |
encryptionKey |
Hand over this key, and Hive will encrypt your box. Keep it safe! |
maxSizeMiB |
The maximum size of the box in MiB. Go for a modest number. |
Bee fact: Beeswax, which is secreted from the abdomen of worker bees, is used to construct the honeycomb.
๐ Bidding Adieu: Closing Boxes #
It's not advised to close boxes that might be accessed again. This prevents unnecessary overhead of reopening the box and ensures smooth data retrieval.
To close a box just call box.close()
. Wipe the box from the face of the earth with box.deleteFromDisk()
.
Bee fact: When a bee finds a good source of nectar, it flies back to the hive and shows its friends where the nectar source is by doing a dance.
โ๏ธ Filling the Honeycomb: Inserting Data #
Once we have a box, it's time to fill it with sweet data! At its core, a box is just a key-value store. String keys are mapped to arbitrary primitive values. You can think of a box as a persisted Map<String, dynamic>
.
final box = Hive.box();
box.put('danceMoves', 'Waggle Dance');
box.put('wingSpeed', 200);
Updating values? If a particular key already exists, Hive simply updates its corresponding value. And complex types like lists and maps? They're in too!
box.put('friends', ['Buzzy', 'Stinger', 'Honey']);
box.put('memories', {'firstFlight': 'Sunny Day', 'bestNectar': 'Rose'});
Instead of .put()
you prefer the syntax of maps? Hive gets you:
box['danceMoves'] = 'Round Dance';
box['wingSpeed'] = 220;
Got a bucket of honey facts? Drop them all at once with box.putAll()
:
box.putAll({'favoriteFlower': 'Lavender', 'wingSpeed': 210});
Bee fact: A single bee colony can produce anywhere from 30 to 100 pounds of honey in a year, depending on the availability of nectar sources.
๐ Extracting Honey... I mean, Data! #
Need a snippet of info from your Hive? No need to don the beekeeper suit; just scoop it out using box.get()
or box.getAll()
. If a key doesn't exist, box.get()
simply return a null
. But fret not; you can tell it to have a backup plan:
final box = Hive.box(name: 'beeees');
final fav = box.get('favoriteFlower');
final moves = box.get('danceMoves', defaultValue: 'waggle');
Oh, and if you're feeling fancy, use the []
operator for a more stylish approach:
final fav = box['favoriteFlower'];
final moves = box['danceMoves'] ?? 'waggle';
Bee fact: Worker bees are the only bees most people ever see flying around outside the hive. They're female, and their roles are to forage for food, build and protect the hive, and more.
๐งน Deleting Data #
Time for some spring cleaning in the hive! To remove a single entry from your box, use box.delete()
:
final deleted = box.delete('lavenderHoney');
print('Honey eaten: $deleted'); // Honey eaten: true
Perhaps it's time for a complete reset, making space for a fresh batch of honey. If you're looking to remove all key-value pairs from a box, use box.clear()
:
box.clear();
Bee fact: Bees have been around for more than 30 million years! Their long history predates the existence of humans and even dinosaurs.
โจ Using Boxes like Lists #
In the bee world, honeycombs aren't just random compartments; they're methodically organized. Similarly, while we've been viewing Hive boxes as maps so far, they can be used just like lists:
final box = Hive.box();
box.add('Rose');
box.add('Tulip');
print(box.getAt(0)); // Rose
print(box.getAt(1)); // Tulip
But remember, bees can't retrieve honey from a comb that's empty or doesn't exist. Likewise, index-based operations will throw an error if you try an index out of bounds:
final box = Hive.box();
box.add('Daisy');
print(box.getAt(1)); // Error! This will make the bees buzz in confusion
Even if we insert a key-value pair we can still access the values by index.
final box = Hive.box();
box.add('Lily');
box.put('key', 'Orchid');
print(box.getAt(0)); // Lily
print(box.getAt(1)); // Orchid
Of course, we can also use the []
operator in combination with indexes :
final box = Hive.box();
box.add('Marigold');
print(box[0]); // Marigold
box[0] = 'Daffodil';
box[1] = 'Bluebell'; // Error! This will get the bees in a whirl
Bee fact: To produce one pound of honey, a hive's bees must visit 2 million flowers and fly over 55,000 miles.
๐ก๏ธ Type safety #
Safety is the bee's priority! To keep your data sweet and pure boxes have an optional generic type parameter. It allows you to store only values of a specific type in a box:
final box = Hive.box<String>(name: 'BeeTreasures');
box.put('DaisyDance', 'SweetNectarShake');
box.put('RoseRumba', 'GoldenPollenParty');
box.put('TulipTango', 777); // Error - You can't fool the bees!
Make sure to use the same type whenever you get the box. Otherwise, you'll get an error:
Hive.box<int>(name: 'BeeTreasures'); // Error - We already have a String box!
Bee fact: Bees have two stomachs. One is for eating, and the other is for storing nectar collected from flowers or water so they can carry it back to their hive. Talk about a sweet backpack!
๐งฉ Bee-yond the Basics: Non-primitive Objects #
Hive goes beyond storing just basic data types! Along with primitives, lists, and maps, Hive can store any Dart object of your liking. The only buzz you need to know? Your object should come equipped with a .fromJson()
and .toJson()
method:
class Bee {
Bee({required this.name, required this.role});
factory Bee.fromJson(Map<String, dynamic> json) => Bee(
name: json['name'] as String,
role: json['role'] as String,
);
final String name;
final String role;
Map<String, dynamic> toJson() => {
'name': name,
'role': role,
};
}
Before our bee-friends can buzz around in Hive, you need to do the beekeeper's job and register the Bee
class:
Hive.registerAdapter('Bee', Bee.fromJson);
Now, you're all set to let your bees fly:
final box = Hive.box();
final bumble = Bee(name: 'Bumble', role: 'Worker');
box.put('BumbleID', bumble);
print(box.get('BumbleID')); // Bumble - Worker
Bee fact: Bees are responsible for pollinating about one-third of the world's food crops.
๐ชข Transactions #
Transactions are an efficient way to update multiple values at once. They are also useful if you want to make sure that a Box is not changed by other code while you are working with it.
final box = Hive.box();
box.write(() {
box.store('nectar1', 'GoldenNectar');
box.store('nectar2', 'WildflowerBrew');
box.store('nectar3', 'CloverDew');
});
box.read(() {
box.get('nectar1'); // GoldenNectar
});
Changes made in a transaction are always atomic. Either all changes are applied or none of them. So if an error occurs during a transaction, the box will not be changed.
final box = Hive.box();
box.put('honeyLevel', 5);
box.write(() {
box.put('honeyLevel', 6);
throw Exception('Oh no!!!');
});
print(box.get('honeyLevel')); // 5
Bee fact: Bees can recognize human faces, and they can even be trained to associate a picture of a face with sweet treats!
๐ฏ Buzzworthy Questions: FAQ #
๐ To bee or not to bee: Hive or Isar?
It's not always black and yellow! ๐ค๐ Both Hive and Isar have their sweet spots. Hive is a lightweight wrapper around Isar so if you are looking for a simple key-value store, Hive might be enough. Isar is the way to go if you need queries, relations, and more advanced features.
๐ Will using Hive make my app as fast as a bee?
While we can't promise your app will gain wings, ๐ฆ Hive sure will give it the speed it deserves. Hive is very resource efficient and optimized for mobile devices. Flutter like a butterfly, sting like a bee! ๐
๐ Where in the beehive does Hive hide my honey... I mean, data?
Remember the
defaultDirectory
we set at the beginning? ๐ That's where Hive stores your data in a file namedyourBoxName.isar
oryourBoxName.sqlite
.
๐ธ I've got some bee-autiful images! Can I store them directly in Hive?
While you might be tempted to put those pics right into Hive, ๐ผ๏ธ it's best to store your images and other binary data as files outside Hive. You can then store the file path in Hive. Think of it like leaving honey out in the open; it's better to keep it neatly stored in the appropriate place. ๐บ
๐ฒ Yikes! What if my app meets an untimely demise (gets killed)? What becomes of my Hive?
No need for a bee-mergency! ๐จ If your app buzzes off unexpectedly, Hive ensures that your data remains safe and sound. Transactions are atomic, so either all changes are applied or none of them. If an error occurs during a transaction, the box will not be changed.
๐ How does Hive keep our data safe from sticky fingers?
We've got the queen's guard on duty! ๐ก๏ธ If you encrypt your box Hive uses 256-bit AES in CBC mode. Every database page is safeguarded separately, ensuring your sweet stuff remains secure and only accessible to those with the right key. Buzz-worthy protection, right? ๐๏ธ
๐ค When should I rally the troops and use transactions?
Just like a hive making big decisions together, ๐ you'll want to use transactions when you have several operations that should be executed together. If one fails, they all fail. It ensures your data stays consistent, safe, and buzzing in harmony! ๐ถ
๐คฃ What if I'm allergic to bees?
No worries! Hive is 100% sting-free, ๐ซ although we're pretty sure you'll get a buzz out of its performance.
โณ Hive operations are synchronous. Doesn't that make the bee waltz a bit slow?
Hive is incredibly fast and efficient. ๐ It's built on top of Isar, a high-performance database engine. If you want to keep database operations away from your UI isolate, you can use
compute()
orIsolate.run()
to run them in a separate isolate.
๐ฆ How many boxes should a wise beekeeper have?
While the sky's the limit in the world of bees, ๐ in Hive, every box becomes a separate file. So, even if you're buzzing with excitement, it's wise not to overdo it. ๐
๐ License #
Copyright 2023 Simon Choi
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.