Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-07-14benchmark: add single process tls connection benchmarkBert Belder
2012-07-12Merge branch 'v0.6' into v0.8Bert Belder
2012-06-23benchmark: Backport improvements made in masterisaacs
Ported to v0.6 for easier comparison in the 0.8.0 blog post.
2012-06-21Fix bug in io benchmarkBert Belder
2012-05-25bench: start a worker for each CPUBen Noordhuis
2012-05-25bench: add http_simple_auto benchmarkBen Noordhuis
Starts a server and benchmarks it with ab.
2012-05-17benchmark for fs.readfileisaacs
2012-05-09Benchmark: add /unicode/nnn bench to http_simple.jsBert Belder
2012-05-09Benchmark: clean up http_simple.jsBert Belder
2012-04-28bench: add continuous stress testBen Noordhuis
Useful in tracking down or at least demonstrating memory leaks.
2012-04-27bench: run GC and dump stats if --expose-gc is setBen Noordhuis
2012-04-18Add switches to http_simple bench to use domainsisaacs
2012-03-29test: move pummel/test-tls-fragmentation to benchmark/Ben Noordhuis
Said test takes over 90 seconds on my Core 2 Duo which is too long, even for the pummel tests.
2012-03-07client latency benchmark: don't require('request')Bert Belder
2012-03-07Typo in http_server_lag.js scriptisaacs
Thanks, @mscdex
2012-03-07Bash script for running http-simple benchmarksisaacs
2012-03-07A server with configurable lag for testingisaacs
2012-03-07A benchmark script for measuring client latencyisaacs
2012-03-06bench: add http_simple_auto benchmarkBen Noordhuis
Starts a server and benchmarks it with ab.
2011-12-30bench: add /echo endpoint to http_simpleBen Noordhuis
Copies the POST request data verbatim into the response body.
2011-12-26bench: fix use of fd after closeBen Noordhuis
2011-12-23Add another nextTick benchmarkBert Belder
It tests how many iterations the event loop can make per second.
2011-11-11bench: optimize io.c benchmarkBen Noordhuis
Use static buffers. Most clock ticks were spent in malloc() and free() instead of read() and write(). Fix measurements. Really fast runs would result in bogus results like: Wrote 1048576000 bytes in -0.731630s using 8192 byte buffers: -1366.811093mB/s
2011-11-09bench: start (NUM_CPUS-1) workersBen Noordhuis
The master is a worker too so fork off one less worker.
2011-11-05bench: update static_http_server benchmark to new APIkoichik
Fixes #2016.
2011-11-05bench: add http_simple cluster edition benchmarkBen Noordhuis
2011-11-01bench: add process.nextTick() benchmarkBen Noordhuis
2011-10-12Remove uname and git-rev detection from http_simple.jsRyan Dahl
2011-10-12Add throughput benchmarkRyan Dahl
2011-10-07Print libuv counters after http_simple exitsRyan Dahl
2011-08-18bench: make number of response body chunks configurable in http_simpleBen Noordhuis
2011-08-17bench: make http_simple send chunked encoding if requestedBen Noordhuis
2011-08-12typed arrays: preliminary benchmarksBen Noordhuis
2011-02-19Add startup memory script to benchmarksRyan Dahl
2011-02-15Add script for running V8 benchmarksRyan Dahl
2011-01-11Bump size of bench histogram to 100msRyan Dahl
2011-01-07Remove debugger statement from http_simple.jsRyan Dahl
results in slow bench
2010-12-31debugger: Disable/Enable raw mode for childRyan Dahl
2010-10-28Abstract out a Server.prototype.pause methodRyan Dahl
2010-10-28Abstract out net.Server.prototype._rejectPendingRyan Dahl
Does the same timeout action for maxConnections as it does for EMFILE.
2010-10-27Add extra anti-DoS tech to net.ServerRyan Dahl
2010-10-27Improve idle benchmarksRyan Dahl
2010-10-27Gracefully handle EMFILERyan Dahl
Implementing a tip from Marc Lehmann: http://pod.tst.eu/http://cvs.schmorp.de/libev/ev.pod#The_special_problem_of_accept_ing_wh Keep an extra FD around for every server. When you hit EMFILE, destroy that FD, accept a connection, close it; in this way you can clear the connection queue and let people know that you're overload. No more timeout needed.
2010-10-27Use the timer list for setTimeoutRyan Dahl
2010-10-21Add incomplete R plot fileRyan Dahl
2010-10-19use bash instead of sh in http_simple_bench.shRyan Dahl
2010-10-15Add idle connection testRyan Dahl
2010-10-14Add 'make bench' scriptRyan Dahl
2010-10-14Improve benchmark/http_simple.jsRyan Dahl
2010-10-12Soft migration of sys -> util, Removal of deprecated utils module.Micheil Smith