Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9268755
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T14:56:25+00:00 2026-06-18T14:56:25+00:00

I have been programming with Node.js for a little while, and I have found

  • 0

I have been programming with Node.js for a little while, and I have found myself becoming increasingly annoyed with the need to chain callbacks. For example, when you need multiple models from a database as shown:

Person.findOne({ 'name.last': 'Ghost' }, 'name occupation', function (err, person) {
    Schedule.findOne({'person_id': person.id }, 'events', function(err, schedule) {
        ...
    }
})

I am looking for solutions to this problem. One idea I had was to do something like this:

function() {
    var p;
    var s;
    var done = false;

    Person.findOne(..., ..., function(err, person) {
        p = person;
        done = true;
    });

    while(!done){}
    done = false;

    Schedule.findOne(..., ..., function(err, schedule) {
        s = schedule;
        done = true;
    });

    while(!done){}
    done = false;

    // ...
}

If I do my queries like this, what are the performance implications? I’m also open to other ideas for solving this problem.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T14:56:26+00:00Added an answer on June 18, 2026 at 2:56 pm

    To answer your most direct question, the performance implication of spin-waiting for a callback is that the spin-wait may starve other, more useful tasks from being completed, either in the same process or on the same machine. If your application were running on a single-user machine with no power management, this wouldn’t matter, but neither of those things is likely. Busy-waiting will destroy battery life on mobile platforms, increase electricity costs in the datacenter, and make future maintainers of the code curse your name!

    As elclanrs already suggested in a comment, you could look at the “async” library to help streamline your code, but in any case you should avoid busy waiting.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have been programming in Objective-C Cocoa for a little while using NSObjects etc.
I have been programming in Delphi for a while, but I never ran across
Total n00b to C# and events although I have been programming for a while.
I have been programming in Python for a while now, and have created some
I have been programming in C# for a while and now I want to
I have been programming for ios and I need to get address. How can
I have been programming in java for a while but I have not met
Noob question. I have been programming at basic level for quite a while but
First - a little bit about my background: I have been programming for some
I am node and programming in general, and I have been really struggling with

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.