-
Notifications
You must be signed in to change notification settings - Fork 30.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
http: refactor outgoing headers processing
Use a shared function, for..in instead of Object.keys, do less work in `setHeader` and instead defer some of it until later, and other minor changes to improve clarity, as well as a slight boost in performance. PR-URL: #20250 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
- Loading branch information
1 parent
e0d2bc5
commit f0b2b26
Showing
4 changed files
with
122 additions
and
103 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
'use strict'; | ||
|
||
const common = require('../common.js'); | ||
const http = require('http'); | ||
|
||
const bench = common.createBenchmark(main, { | ||
duplicates: [1, 100], | ||
n: [10, 1000], | ||
}); | ||
|
||
function main({ duplicates, n }) { | ||
const headers = { | ||
'Connection': 'keep-alive', | ||
'Transfer-Encoding': 'chunked', | ||
}; | ||
|
||
for (var i = 0; i < n / duplicates; i++) { | ||
headers[`foo${i}`] = []; | ||
for (var j = 0; j < duplicates; j++) { | ||
headers[`foo${i}`].push(`some header value ${i}`); | ||
} | ||
} | ||
|
||
const server = http.createServer(function(req, res) { | ||
res.writeHead(200, headers); | ||
res.end(); | ||
}); | ||
server.listen(common.PORT, function() { | ||
bench.http({ | ||
path: '/', | ||
connections: 10 | ||
}, function() { | ||
server.close(); | ||
}); | ||
}); | ||
} |
This file contains 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
Oops, something went wrong.