Coder Social home page Coder Social logo

Comments (5)

simc avatar simc commented on July 21, 2024

Hi,
Thanks for using the library but I cannot recommend using it in production just yet.

Currently, every time a list / map / object is changed, it has to be written completely.
Now the question is how often you change the list and how big is it? If you change it 10 times per second or it is really big, this might be a problem. Otherwise you won't notice a performance hit.

Currently there are no better ways to do it and I haven't found a smart way to handle this internally. If only a part of your list changes regulary you should consider splitting the list in two parts. If you have an idea how we could store "parts of lists" in the box file, just let me know ;)

from hive.

simc avatar simc commented on July 21, 2024

I just published a new version of Hive which solves your problem. You can use Hive.add() and Hive.values to use a box as a list. Docs

from hive.

adriancmurray avatar adriancmurray commented on July 21, 2024

@leisim when using Box.values do you think using the map method

Box.values.map((m)=>SomeObject.fromJson(m)).toList()

for object generation is efficient enough instead of opting into the typeannotator? The only way I've side skirted the cast error of "_InternalHashMap<dynamic, dynamic> is not a subtype of Map<String, dynamic>" is by forcing a json encode/decode and then using my SomeObject.fromJson(map) method to generate the object. I don't think this is a good solution but wanted to get your input before I committed the time to go through and annotate each object and its items.

from hive.

adriancmurray avatar adriancmurray commented on July 21, 2024

[Update] - k, thanks to this response : flutter/flutter#16589 (comment)
I was able to dump the typecast errors and using the map method works as it should without forcing json encode/decode. Considering your .values and .toMap methods work similarly, I don't think I need any input on the efficiency of this. Thanks.

from hive.

simc avatar simc commented on July 21, 2024

@adriancmurray
I understand that you store multiple maps in a box and want to cast them from dynamic. There are two methods I recommend.

Say you want maps of type Map<String, String>:

  1. Use the cast() method on your map:
box.values.map((m) => m.cast<String, String>()).toList();
  1. Store your data in another object and let Hive do the work:
@HiveType
class MapHolder {
  @HiveField(0)
  Map<String, String> data;
}

Run the type adapter generator and get maps like this:

var myMap = box.get('myMap').data;

Neither solution is perfect but unfortunately Dart is a bit lacking when it comes to use of Generics at runtime. If anyone finds out how this could be improved, I'd be happy to implement it.

from hive.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.