diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2010-05-04 22:35:55 -0700 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2010-05-04 22:35:55 -0700 |
commit | ab723d022d7a055f046216013c64032ced9ed081 (patch) | |
tree | 143b90b472ce8ec2bf77a5d314fff64182c8d79d | |
parent | 141565046375db6fa427ba014113abcc9f4d5833 (diff) | |
download | nodejs-ab723d022d7a055f046216013c64032ced9ed081.tar.gz nodejs-ab723d022d7a055f046216013c64032ced9ed081.tar.bz2 nodejs-ab723d022d7a055f046216013c64032ced9ed081.zip |
Add buffer response to http_simple.js
-rw-r--r-- | benchmark/http_simple.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/benchmark/http_simple.js b/benchmark/http_simple.js index 54958d169..627835b79 100644 --- a/benchmark/http_simple.js +++ b/benchmark/http_simple.js @@ -1,4 +1,5 @@ path = require("path"); +Buffer = require("buffer").Buffer; port = parseInt(process.env.PORT || 8000); @@ -17,6 +18,7 @@ for (var i = 0; i < 20*1024; i++) { } stored = {}; +storedBuffer = {}; http.createServer(function (req, res) { var commands = req.url.split("/"); @@ -38,6 +40,18 @@ http.createServer(function (req, res) { } body = stored[n]; + } else if (command == "buffer") { + var n = parseInt(arg, 10) + if (n <= 0) throw new Error("bytes called with n <= 0"); + if (storedBuffer[n] === undefined) { + puts("create storedBuffer[n]"); + storedBuffer[n] = new Buffer(n); + for (var i = 0; i < n; i++) { + storedBuffer[n][i] = "C".charCodeAt(0); + } + } + body = storedBuffer[n]; + } else if (command == "quit") { res.connection.server.close(); body = "quitting"; |