GithubHelp home page GithubHelp logo

Comments (5)

BryanDonovan avatar BryanDonovan commented on August 16, 2024

@aletorrado, I've found that if I wrap the callbacks with process.nextTick(), it solves this problem. Can you please check out branch feature/nested-cache-fetch-fix and check that I didn't break anything for your use cases? The diff is https://github.com/BryanDonovan/node-cache-manager/compare/feature/nested-cache-fetch-fix. The new unit test passes with process.nextTick change, and fails without it.

from cache-manager.

BryanDonovan avatar BryanDonovan commented on August 16, 2024

I'm not sure this fix is correct. It seems like magic. This line where we delete the queued callbacks: https://github.com/BryanDonovan/node-cache-manager/compare/feature/nested-cache-fetch-fix#diff-4144c5c2a16b6a217fc942aee2803138R59

.. happens before the callbacks are called. Maybe this makes sense though.

from cache-manager.

aletorrado avatar aletorrado commented on August 16, 2024

Hi @BryanDonovan. The problem was that one of the final callbacks was updating the self.queues[key] array, while iterating. Your solution is correct, but you may also want to try something like this:

    function fillCallbacks(err, data) {
        var waiting = self.queues[key];
        delete self.queues[key];
        waiting.forEach(function(task) {
            var taskDomain = task.domain || domain.create();
            taskDomain.bind(task.cb)(err, data);
        });
    }

from cache-manager.

BryanDonovan avatar BryanDonovan commented on August 16, 2024

Thanks, I was thinking of something similar as well. I'll give that a try.

from cache-manager.

aletorrado avatar aletorrado commented on August 16, 2024

Nice job. Thanks.

from cache-manager.

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.