Coder Social home page Coder Social logo

Comments (3)

ceejbot avatar ceejbot commented on July 21, 2024

Doing it asynchronously would be the natural way to do things with node. However, being so slow is not desirable. I haven't done any performance profiling work at all on this project yet. If you have any data on exactly what's slow for you, that would be helpful. Otherwise, I'll look into this & do some profiling.

from fivebeans.

supermonster avatar supermonster commented on July 21, 2024

Skipping some init code here's the meat:

put();

function put()
{
    var payload = JSON.stringify({a:1, b:"test"});
    beans.put(priority=0, delay=0, ttr=30, payload, function(err, job_id) {
        if (err) throw err;
        console.log((new Date()).valueOf()/1000);
        setImmediate(put);
    });
}

result:

1375225841.397
1375225841.437
1375225841.477
1375225841.517
1375225841.557
1375225841.597
1375225841.637
1375225841.677
1375225841.717
1375225841.757
1375225841.797
1375225841.837

So you can see every synchronized request taking ~40ms. I've just started using the module. Am I doing something wrong?

from fivebeans.

jtsoi avatar jtsoi commented on July 21, 2024

@supermonster,

This issue might be resolved now, see this PR: #21

/JT

from fivebeans.

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.