dbinspect_hive 0.1.0
dbinspect_hive: ^0.1.0 copied to clipboard
A Hive adapter for dbinspect_bridge, so a desktop client can browse your app's Hive boxes while it runs.
Changelog #
0.1.0 #
First release. The Hive adapter for dbinspect_bridge.
- Boxes are handed in rather than discovered — nothing in Hive lists what an
application has open. Both
BoxandLazyBoxare accepted. - Every store is two columns,
keyandvalue, and the schema is always reported as inferred, because a box has none. - Keys page in Hive's ascending order, read by index, so a page of a 100k-entry box costs the page and not the box.
- Depends on
hive, which is pure Dart, so no Flutter SDK is required. - No transactions. A Hive box has no journal, so
capabilities.transactionsisfalseand an edit is permanent the instant it is accepted. That flag exists so a client can say so in front of the edit rather than failing after it.