Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

node: improve nextTick performance #5092

Closed
wants to merge 2 commits into from
Closed

Commits on Feb 4, 2016

  1. node: improve process.nextTick performance

    Prevent deoptimization of process.nextTick by
    removing the try finally block. This is not
    necessary as the next tick queue will be reset
    anyway, no matter if the callback throws or not.
    Ruben Bridgewater committed Feb 4, 2016
    Configuration menu
    Copy the full SHA
    dc6403e View commit details
    Browse the repository at this point in the history
  2. node: improve process.nextTick performance

    Using a predefined array size prevents resizing
    the array and is therefor faster.
    Ruben Bridgewater committed Feb 4, 2016
    Configuration menu
    Copy the full SHA
    16ad4b7 View commit details
    Browse the repository at this point in the history