Giter VIP home page Giter VIP logo

Comments (3)

medikoo avatar medikoo commented on August 21, 2024

@peteruithoven yes, it's not perfectly documented, but it's possible to provide custom normalizer function. It's function that should return an unique id for received arguments, and on that basis internal logic will decide whether given case was memoized or not.

In your case it might work well if done as follows:

var memoized = memoize(getSelectedObjectsTransform, {
  normalizer: function (args) {
    var state = args[0];
    return JSON.stringify(state);
  }
});

I'm closing it, as it's not a bug report or feature request

from memoizee.

peteruithoven avatar peteruithoven commented on August 21, 2024

@medikoo Thanks for the idea, but that doesn't really use the benefit of immutable data? I'd like to find a solution without a JSON.stringify(). I'm afraid the id will get very big, when I have a lot of data, I'm not sure what kind of negative impacts that would have.

from memoizee.

medikoo avatar medikoo commented on August 21, 2024

@peteruithoven in any case unique string id needs to be resolved. If you know the way how to make it short, just do it :) I don't know internal implications of your project, so it's hard for me to help you more on that case.

Alternatively if for same state structures always same object instances are passed, then you do not need to provide any normalizers, as by default memoization works by checking whether objects are equal, resolved ids are very short in that case.

from memoizee.

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.