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

http: use arrow fns for lexical this in Agent #16475

Closed
wants to merge 1 commit into from

Conversation

bengl
Copy link
Member

@bengl bengl commented Oct 25, 2017

Checklist
  • make -j4 test (UNIX), or vcbuild test (Windows) passes
  • commit message follows commit guidelines
Affected core subsystem(s)

http

@nodejs-github-bot nodejs-github-bot added the http Issues or PRs related to the http subsystem. label Oct 25, 2017
@bengl
Copy link
Member Author

bengl commented Oct 25, 2017

this.maxSockets = this.options.maxSockets || Agent.defaultMaxSockets;
this.maxFreeSockets = this.options.maxFreeSockets || 256;

this.on('free', (socket, options) => {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

FWIW this function can be pulled out, named, and referenced here instead IIRC.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is there an advantage to pulling it out here?

Copy link
Member

@benjamingr benjamingr left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, looks like there is no public API impact either.

Did you run any benchmarks on this btw?

@bengl
Copy link
Member Author

bengl commented Oct 25, 2017

@benjamingr Here's http/create-clientrequest.js (which seems to be the most relevant) on my machine.

On master:

http/create-clientrequest.js n=1000000 len=1: 1,335,671.932826184
http/create-clientrequest.js n=1000000 len=8: 1,251,649.5755732013
http/create-clientrequest.js n=1000000 len=16: 1,200,070.7172872
http/create-clientrequest.js n=1000000 len=32: 1,031,239.9860796627
http/create-clientrequest.js n=1000000 len=64: 1,104,284.672344222
http/create-clientrequest.js n=1000000 len=128: 908,874.688628734

With this patch:

http/create-clientrequest.js n=1000000 len=1: 1,269,757.9608199117
http/create-clientrequest.js n=1000000 len=8: 1,257,920.3856401495
http/create-clientrequest.js n=1000000 len=16: 1,218,403.6231561322
http/create-clientrequest.js n=1000000 len=32: 1,110,837.246530615
http/create-clientrequest.js n=1000000 len=64: 1,212,380.389657481
http/create-clientrequest.js n=1000000 len=128: 1,096,361.134963879

@gireeshpunathil
Copy link
Member

@bengl - There are other instances of this transportations to unbound functions elsewhere in the codebase - for example in fs.js, net.js, repl.js, zlib.js etc. and few in tests. Just wondering is this the first-of-its kind and set a reference for some future code-and-learn exercise.

@bengl
Copy link
Member Author

bengl commented Oct 25, 2017

@gireeshpunathil I hadn't thought of it that way, but yes, this sort of change could be good for code-and-learn.

@bengl
Copy link
Member Author

bengl commented Nov 5, 2017

Landed in 1f045f4

@bengl bengl closed this Nov 5, 2017
bengl added a commit that referenced this pull request Nov 5, 2017
PR-URL: #16475
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
cjihrig pushed a commit to cjihrig/node that referenced this pull request Nov 6, 2017
PR-URL: nodejs#16475
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
@cjihrig cjihrig mentioned this pull request Nov 6, 2017
gibfahn pushed a commit that referenced this pull request Nov 14, 2017
PR-URL: #16475
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
@gibfahn gibfahn mentioned this pull request Nov 21, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
http Issues or PRs related to the http subsystem.
Projects
None yet
Development

Successfully merging this pull request may close these issues.