René's URL Explorer Experiment


Title: lib: avoid quadratic shift() in startup snapshot callback by watilde · Pull Request #62914 · nodejs/node · GitHub

Open Graph Title: lib: avoid quadratic shift() in startup snapshot callback by watilde · Pull Request #62914 · nodejs/node

X Title: lib: avoid quadratic shift() in startup snapshot callback by watilde · Pull Request #62914 · nodejs/node

Description: Micro benchmark $ cat bench-startup-snapshot-callbacks.js 'use strict'; function runWithShift(callbacks) { while (callbacks.length > 0) { const { 0: cb, 1: data } = callbacks.shift(); cb(data); } } function runWithIndex(callbacks) { for (let i = 0; i < callbacks.length; i++) { const { 0: cb, 1: data } = callbacks[i]; cb(data); } callbacks.length = 0; } function makeCallbacks(count) { return Array.from({ length: count }, (_, j) => [() => {}, j]); } function measure(fn, count, iterations) { // warmup for (let i = 0; i < 50; i++) fn(makeCallbacks(count)); const start = performance.now(); for (let i = 0; i < iterations; i++) fn(makeCallbacks(count)); return performance.now() - start; } const COUNTS = [10, 100, 1_000, 10_000, 100_000]; console.log('--- shift() vs for+length=0 ---\n'); for (const count of COUNTS) { const iters = Math.max(10, Math.floor(1_000_000 / count)); const shiftMs = measure(runWithShift, count, iters); const indexMs = measure(runWithIndex, count, iters); const ratio = shiftMs / indexMs; const countStr = `count=${String(count).padStart(6)}`; const shiftStr = `${shiftMs.toFixed(2).padStart(10)}ms`; const indexStr = `${indexMs.toFixed(2).padStart(8)}ms`; const ratioStr = `${ratio.toFixed(ratio >= 10 ? 0 : 1).padStart(5)}x faster`; console.log(`${countStr} ${shiftStr} vs ${indexStr} => ${ratioStr}`); } Result $ ./node bench-startup-snapshot-callbacks.js --- shift() vs for+length=0 --- count= 10 58.22ms vs 49.66ms => 1.2x faster count= 100 42.62ms vs 32.54ms => 1.3x faster count= 1000 53.96ms vs 30.92ms => 1.7x faster count= 10000 60.50ms vs 28.47ms => 2.1x faster count=100000 46747.20ms vs 50.64ms => 923x faster

Open Graph Description: Micro benchmark $ cat bench-startup-snapshot-callbacks.js 'use strict'; function runWithShift(callbacks) { while (callbacks.length > 0) { const { 0: cb, 1: data } = callbacks.shif...

X Description: Micro benchmark $ cat bench-startup-snapshot-callbacks.js &#39;use strict&#39;; function runWithShift(callbacks) { while (callbacks.length &gt; 0) { const { 0: cb, 1: data } = ca...

Opengraph URL: https://github.com/nodejs/node/pull/62914

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/commits/:range(.:format)
route-controllerpull_requests
route-actioncommits
fetch-noncev2:faab9436-f716-0bd3-3cb9-5e11a04a54cd
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-id8F70:27420E:3612533:48214F9:6A655AE0
html-safe-nonce6882df31c468fa3b9dffd6c6577d7fba7d94177739f36079bf4e0242a11383d5
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI4RjcwOjI3NDIwRTozNjEyNTMzOjQ4MjE0Rjk6NkE2NTVBRTAiLCJ2aXNpdG9yX2lkIjoiMzc2MzM4NDE4MjAxNjEzNzk1MiIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmac52ab3e150f9f14a85d46e01b479ce4190142cf72bb93a99032a22fdd987a30ac
hovercard-subject-tagpull_request:3574707540
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/commits
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/nodejs/node/pull/62914/commits/100d58420fecd235f6bbe803773b9b5605b6d41d
twitter:imagehttps://avatars.githubusercontent.com/u/1716463?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/u/1716463?s=400&v=4
og:image:altMicro benchmark $ cat bench-startup-snapshot-callbacks.js 'use strict'; function runWithShift(callbacks) { while (callbacks.length > 0) { const { 0: cb, 1: data } = callbacks.shif...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
None52c76df668885aaff23b50bdca1fa1ea44ac9c1553e888ebc70ff1e4daa4625b
turbo-cache-controlno-preview
diff-viewunified
go-importgithub.com/nodejs/node git https://github.com/nodejs/node.git
octolytics-dimension-user_id9950313
octolytics-dimension-user_loginnodejs
octolytics-dimension-repository_id27193779
octolytics-dimension-repository_nwonodejs/node
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id27193779
octolytics-dimension-repository_network_root_nwonodejs/node
turbo-body-classeslogged-out env-production page-responsive full-width
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release309153364422b3c499922d1a2a6404910a58ed8e
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/nodejs/node/pull/62914/commits/100d58420fecd235f6bbe803773b9b5605b6d41d#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fpull%2F62914%2Fcommits%2F100d58420fecd235f6bbe803773b9b5605b6d41d
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
Code QualityEnforce quality at mergehttps://github.com/features/code-quality
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fpull%2F62914%2Fcommits%2F100d58420fecd235f6bbe803773b9b5605b6d41d
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fpull_requests%2Fshow%2Fcommits&source=header-repo&source_repo=nodejs%2Fnode
Reloadhttps://github.com/nodejs/node/pull/62914/commits/100d58420fecd235f6bbe803773b9b5605b6d41d
Reloadhttps://github.com/nodejs/node/pull/62914/commits/100d58420fecd235f6bbe803773b9b5605b6d41d
Reloadhttps://github.com/nodejs/node/pull/62914/commits/100d58420fecd235f6bbe803773b9b5605b6d41d
Please reload this pagehttps://github.com/nodejs/node/pull/62914/commits/100d58420fecd235f6bbe803773b9b5605b6d41d
nodejs https://github.com/nodejs
nodehttps://github.com/nodejs/node
Please reload this pagehttps://github.com/nodejs/node/pull/62914/commits/100d58420fecd235f6bbe803773b9b5605b6d41d
Notifications https://github.com/login?return_to=%2Fnodejs%2Fnode
Fork 36.1k https://github.com/login?return_to=%2Fnodejs%2Fnode
Star 118k https://github.com/login?return_to=%2Fnodejs%2Fnode
Code https://github.com/nodejs/node
Issues 1.3k https://github.com/nodejs/node/issues
Pull requests 1.1k https://github.com/nodejs/node/pulls
Actions https://github.com/nodejs/node/actions
Projects https://github.com/nodejs/node/projects
Security and quality 0 https://github.com/nodejs/node/security
Insights https://github.com/nodejs/node/pulse
Code https://github.com/nodejs/node
Issues https://github.com/nodejs/node/issues
Pull requests https://github.com/nodejs/node/pulls
Actions https://github.com/nodejs/node/actions
Projects https://github.com/nodejs/node/projects
Security and quality https://github.com/nodejs/node/security
Insights https://github.com/nodejs/node/pulse
Sign up for GitHub https://github.com/signup?return_to=%2Fnodejs%2Fnode%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://github.com/login?return_to=%2Fnodejs%2Fnode%2Fissues%2Fnew%2Fchoose
watildehttps://github.com/watilde
nodejs:mainhttps://github.com/nodejs/node/tree/main
watilde:startup-snapshothttps://github.com/watilde/node/tree/startup-snapshot
Conversation 5 https://github.com/nodejs/node/pull/62914
Commits 1 https://github.com/nodejs/node/pull/62914/commits
Checks 51 https://github.com/nodejs/node/pull/62914/checks
Files changed https://github.com/nodejs/node/pull/62914/files
Please reload this pagehttps://github.com/nodejs/node/pull/62914/commits/100d58420fecd235f6bbe803773b9b5605b6d41d
lib: avoid quadratic shift() in startup snapshot callback https://github.com/nodejs/node/pull/62914/commits/100d58420fecd235f6bbe803773b9b5605b6d41d#top
Show all changes 1 commit https://github.com/nodejs/node/pull/62914/files
100d584 lib: avoid quadratic shift() in startup snapshot callback watilde Apr 23, 2026 https://github.com/nodejs/node/pull/62914/commits/100d58420fecd235f6bbe803773b9b5605b6d41d
Clear filters https://github.com/nodejs/node/pull/62914/commits/100d58420fecd235f6bbe803773b9b5605b6d41d
Please reload this pagehttps://github.com/nodejs/node/pull/62914/commits/100d58420fecd235f6bbe803773b9b5605b6d41d
Please reload this pagehttps://github.com/nodejs/node/pull/62914/commits/100d58420fecd235f6bbe803773b9b5605b6d41d
startup-snapshot-callbacks.js https://github.com/nodejs/node/pull/62914/commits/100d58420fecd235f6bbe803773b9b5605b6d41d#diff-e706bfab043fff8356c7d02033282f5df307a73742543c32a0cf87cbe8fa6121
startup_snapshot.js https://github.com/nodejs/node/pull/62914/commits/100d58420fecd235f6bbe803773b9b5605b6d41d#diff-6b3a6e9f65c6b297a46b30f60e8267c48fce024f83b0d5539803a308871b47d9
Please reload this pagehttps://github.com/nodejs/node/pull/62914/commits/100d58420fecd235f6bbe803773b9b5605b6d41d
https://github.com/watilde
watildehttps://github.com/nodejs/node/commits?author=watilde
benchmark/v8/startup-snapshot-callbacks.jshttps://github.com/nodejs/node/pull/62914/commits/100d58420fecd235f6bbe803773b9b5605b6d41d#diff-e706bfab043fff8356c7d02033282f5df307a73742543c32a0cf87cbe8fa6121
View file https://github.com/watilde/node/blob/100d58420fecd235f6bbe803773b9b5605b6d41d/benchmark/v8/startup-snapshot-callbacks.js
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/nodejs/node/pull/62914/commits/{{ revealButtonHref }}
lib/internal/v8/startup_snapshot.jshttps://github.com/nodejs/node/pull/62914/commits/100d58420fecd235f6bbe803773b9b5605b6d41d#diff-6b3a6e9f65c6b297a46b30f60e8267c48fce024f83b0d5539803a308871b47d9
View file https://github.com/watilde/node/blob/100d58420fecd235f6bbe803773b9b5605b6d41d/lib/internal/v8/startup_snapshot.js
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/nodejs/node/pull/62914/commits/{{ revealButtonHref }}
https://github.com/nodejs/node/pull/62914/commits/100d58420fecd235f6bbe803773b9b5605b6d41d#diff-6b3a6e9f65c6b297a46b30f60e8267c48fce024f83b0d5539803a308871b47d9
https://github.com/nodejs/node/pull/62914/commits/100d58420fecd235f6bbe803773b9b5605b6d41d#diff-6b3a6e9f65c6b297a46b30f60e8267c48fce024f83b0d5539803a308871b47d9
https://github.com/nodejs/node/pull/62914/commits/100d58420fecd235f6bbe803773b9b5605b6d41d#diff-6b3a6e9f65c6b297a46b30f60e8267c48fce024f83b0d5539803a308871b47d9
Please reload this pagehttps://github.com/nodejs/node/pull/62914/commits/100d58420fecd235f6bbe803773b9b5605b6d41d
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.