-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
http_parser: use pushValueToArray for headers
For performance add headers to the headers Array by pushing them on from JS. Benchmark added to demonstrate this case. PR-URL: #3780 Reviewed-By: Fedor Indutny <fedor@indutny.com>
- Loading branch information
1 parent
8464667
commit b8366e7
Showing
2 changed files
with
72 additions
and
6 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,55 @@ | ||
'use strict'; | ||
|
||
const common = require('../common'); | ||
const HTTPParser = process.binding('http_parser').HTTPParser; | ||
const REQUEST = HTTPParser.REQUEST; | ||
const kOnHeaders = HTTPParser.kOnHeaders | 0; | ||
const kOnHeadersComplete = HTTPParser.kOnHeadersComplete | 0; | ||
const kOnBody = HTTPParser.kOnBody | 0; | ||
const kOnMessageComplete = HTTPParser.kOnMessageComplete | 0; | ||
const CRLF = '\r\n'; | ||
|
||
const bench = common.createBenchmark(main, { | ||
fields: [4, 8, 16, 32], | ||
n: [1e5], | ||
}); | ||
|
||
|
||
function main(conf) { | ||
const fields = conf.fields >>> 0; | ||
const n = conf.n >>> 0; | ||
var header = `GET /hello HTTP/1.1${CRLF}Content-Type: text/plain${CRLF}`; | ||
|
||
for (var i = 0; i < fields; i++) { | ||
header += `X-Filler${i}: ${Math.random().toString(36).substr(2)}${CRLF}`; | ||
} | ||
header += CRLF; | ||
|
||
processHeader(new Buffer(header), n); | ||
} | ||
|
||
|
||
function processHeader(header, n) { | ||
const parser = newParser(REQUEST); | ||
|
||
bench.start(); | ||
for (var i = 0; i < n; i++) { | ||
parser.execute(header, 0, header.length); | ||
parser.reinitialize(REQUEST); | ||
} | ||
bench.end(n); | ||
} | ||
|
||
|
||
function newParser(type) { | ||
const parser = new HTTPParser(type); | ||
|
||
parser.headers = []; | ||
|
||
parser[kOnHeaders] = function() { }; | ||
parser[kOnHeadersComplete] = function() { }; | ||
parser[kOnBody] = function() { }; | ||
parser[kOnMessageComplete] = function() { }; | ||
|
||
return parser; | ||
} |
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