-
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.
The Regex implementation is not faster than ascii code compare. the field name is shorter, the speed is faster. benchmark result here: https://bitbucket.org/snippets/JacksonTian/Rnbad/benchmark-result PR-URL: #4790 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Brian White <[email protected]>
- Loading branch information
1 parent
80155d3
commit 63c601b
Showing
2 changed files
with
100 additions
and
2 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,52 @@ | ||
'use strict'; | ||
|
||
const common = require('../common.js'); | ||
const _checkIsHttpToken = require('_http_common')._checkIsHttpToken; | ||
|
||
const bench = common.createBenchmark(main, { | ||
key: [ | ||
'TCN', | ||
'ETag', | ||
'date', | ||
'Vary', | ||
'server', | ||
'Server', | ||
'status', | ||
'version', | ||
'Expires', | ||
'alt-svc', | ||
'location', | ||
'Connection', | ||
'Keep-Alive', | ||
'content-type', | ||
'Content-Type', | ||
'Cache-Control', | ||
'Last-Modified', | ||
'Accept-Ranges', | ||
'content-length', | ||
'x-frame-options', | ||
'x-xss-protection', | ||
'Content-Encoding', | ||
'Content-Location', | ||
'Transfer-Encoding', | ||
'alternate-protocol', | ||
':', // invalid input | ||
'@@', | ||
'中文呢', // unicode | ||
'((((())))', // invalid | ||
':alternate-protocol', // fast bailout | ||
'alternate-protocol:' // slow bailout | ||
], | ||
n: [1e6], | ||
}); | ||
|
||
function main(conf) { | ||
var n = +conf.n; | ||
var key = conf.key; | ||
|
||
bench.start(); | ||
for (var i = 0; i < n; i++) { | ||
_checkIsHttpToken(key); | ||
} | ||
bench.end(n); | ||
} |
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