add .query memoization for ultimate hello world benchmarks

This commit is contained in:
TJ Holowaychuk 2013-08-22 18:06:16 -07:00
parent 933ecd8747
commit 261acbde88
3 changed files with 5 additions and 4 deletions

View file

@ -11,7 +11,6 @@ console.log(' %s middleware', n);
while (n--) { while (n--) {
app.use(function(next){ app.use(function(next){
return function *(){ return function *(){
var p = this.path;
yield next; yield next;
} }
}); });

View file

@ -6,7 +6,7 @@ pid=$!
sleep 2 sleep 2
wrk http://localhost:3000/ \ wrk 'http://localhost:3000/?foo[bar]=baz' \
-r 2000 \ -r 2000 \
-c 50 \ -c 50 \
-t 4 \ -t 4 \

View file

@ -142,7 +142,7 @@ module.exports = {
*/ */
get path() { get path() {
var c = this._pc = this._pc || {}; var c = this._pathcache = this._pathcache || {};
return c[this.url] || (c[this.url] = parse(this.url).pathname); return c[this.url] || (c[this.url] = parse(this.url).pathname);
}, },
@ -169,7 +169,9 @@ module.exports = {
get query() { get query() {
var str = this.querystring; var str = this.querystring;
if (!str) return {}; if (!str) return {};
return qs.parse(str);
var c = this._querycache = this._querycache || {};
return c[str] || (c[str] = qs.parse(str));
}, },
/** /**