hive
hive copied to clipboard
Lightweight and blazing fast key-value database written in pure Dart.
I sometimes get an error like: ``` FileSystemException: Cannot delete file, path = 'settings/settings_web.lock' (OS Error: No such file or directory, errno = 2) dart:io FileSystemEntity.delete package:hive/src/backend/vm/storage_backend_vm.dart 210:21 StorageBackendVm._closeInternal ```...
**Steps to Reproduce** Running an app with Hive (thanks btw, great!) gives this error when running the web-version in Safari, not in Firefox and Chrome: "Unhandled Promise Rejection: NotFoundError: Failed...
Hello, I have an app I am working on which uses Hive for storing local data. The thing is the data stored locally is data required for login persistence, but...
Dear Hive Community, I'd like to apologize for my lack of support and updates for Hive over the past year. Despite this, your commitment to the community has ensured that...
Has anyone ever experienced this? I will try to get an MVCE but i wanted to throw it out here before i forget because this is where "Get help" from...
In our previous app version we registered adapter with `typeId = 132`. In the new version we completely remove that adapter but we are facing an issue when the user...
How can I open a .hive file in Android Studio so I can view the contents of my Hive boxes? I have tried opening the file as JSON/TXT/XML and nothing...
E/flutter (25087): [ERROR:flutter/runtime/dart_vm_initializer.cc(41)] Unhandled Exception: Out of Memory E/flutter (25087): #0 new Uint8List (dart:typed_data-patch/typed_data_patch.dart:2237:3) E/flutter (25087): #1 BufferedFileReader.loadBytes (package:hive/src/io/buffered_file_reader.dart:73:18) E/flutter (25087): #2 _KeyReader._load (package:hive/src/io/frame_io_helper.dart:89:40) E/flutter (25087): #3 _KeyReader.readKeys (package:hive/src/io/frame_io_helper.dart:69:31) E/flutter...
When using Hive in the web version, I encounter an issue in the following scenario. The problem arises when the security key changes in the middle of using secureStorage, resulting...
I am using hive for data persistence and now I want to delete data at a particular key of a box. But `delete ` method is not working, My code...