Uh oh!
There was an error while loading. Please reload this page.
lib: recycle queues - #61461
Merged
Merged
Conversation
Avoid creating unnecessary garbage in the old space.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@## main #61461 +/- ##
==========================================
- Coverage 88.53% 88.52% -0.01%
==========================================
Files 704 704 Lines 208759 208984 +225 Branches 40281 40348 +67 ==========================================
+ Hits 184816 185006 +190 - Misses 15947 15962 +15 - Partials 7996 8016 +20
🚀 New features to boost your workflow:
|
anonrig
approved these changes
Jan 21, 2026
nodejs-github-bot
commented
Jan 21, 2026
Collaborator
RafaelGSS
approved these changes
Jan 22, 2026
nodejs-github-bot
commented
Jan 22, 2026
Collaborator
nodejs-github-bot
commented
Jan 24, 2026
Collaborator
| constructor() { | ||
| this.head = this.tail = new FixedCircularBuffer(); | ||
| this.head = this.tail = FixedQueue.#pool.pop() ?? new FixedCircularBuffer(); |
nodejs-github-bot
commented
Jan 27, 2026
Collaborator
nodejs-github-bot
commented
Jan 29, 2026
Collaborator
Uh oh!
There was an error while loading. Please reload this page.
nodejs-github-bot
commented
Jan 30, 2026
Collaborator
Landed in 7407164 |
aduh95 pushed a commit
that referenced
this pull request
Feb 2, 2026
Avoid creating unnecessary garbage in the old space. PR-URL: #61461 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Gürgün Dayıoğlu <hey@gurgun.day>
aduh95 pushed a commit
that referenced
this pull request
Feb 2, 2026
Avoid creating unnecessary garbage in the old space. PR-URL: #61461 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Gürgün Dayıoğlu <hey@gurgun.day>
aduh95 pushed a commit
that referenced
this pull request
Feb 10, 2026
Avoid creating unnecessary garbage in the old space. PR-URL: #61461 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Gürgün Dayıoğlu <hey@gurgun.day>
aduh95 pushed a commit
that referenced
this pull request
Feb 14, 2026
Avoid creating unnecessary garbage in the old space. PR-URL: #61461 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Gürgün Dayıoğlu <hey@gurgun.day>
aduh95 pushed a commit
that referenced
this pull request
Feb 22, 2026
Avoid creating unnecessary garbage in the old space. PR-URL: #61461 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Gürgün Dayıoğlu <hey@gurgun.day>
juanarbol pushed a commit
to juanarbol/node
that referenced
this pull request
Jul 16, 2026
Avoid creating unnecessary garbage in the old space. PR-URL: nodejs#61461 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Gürgün Dayıoğlu <hey@gurgun.day>
juanarbol pushed a commit
that referenced
this pull request
Jul 17, 2026
Avoid creating unnecessary garbage in the old space. PR-URL: #61461 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Gürgün Dayıoğlu <hey@gurgun.day>
juanarbol pushed a commit
that referenced
this pull request
Jul 19, 2026
Avoid creating unnecessary garbage in the old space. PR-URL: #61461 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Gürgün Dayıoğlu <hey@gurgun.day>
marco-ippolito pushed a commit
that referenced
this pull request
Jul 29, 2026
Avoid creating unnecessary garbage in the old space. PR-URL: #61461 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Gürgün Dayıoğlu <hey@gurgun.day>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Avoid creating unnecessary garbage in the old space.