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
2013-05-14benchmark: hash streamisaacs
2013-03-25bench: add child process read perf benchmarkBen Noordhuis
2013-03-20bench: compare binaries equal timesTrevor Norris
The benchmark compare would drop the last run of the binary pairs. So when they were only run once an error would arise because no data was generated for the second binary.
2013-03-20bench: add dgram send/recv benchmarkBen Noordhuis
2013-03-14http: Don't hot-path end() for large buffersisaacs
The benefits of the hot-path optimization below start to fall off when the buffer size gets up near 128KB, because the cost of the copy is more than the cost of the extra write() call. Switch to the write/end method at that point. Heuristics and magic numbers are awful, but slow http responses are worse. Fix #4975
2013-03-07bench: Do math on numbers in compare.js, not stringsisaacs
2013-03-07bench: Use environ to run compares more than onceisaacs
This will run the benchmarks the number of times specified by NODE_BENCH_RUNS, to attempt to reduce variability. If the number of runs is high enough, it'll also throw out the top and bottom quartiles, since that's where the outliers will be. It's not very fancy statistics-fu, but it's better than nothing. Also, linted this file. It had tabs in it. TABS!
2013-03-06bench: Add flag to be silent in runnerisaacs
This is helpful in tracking down bailouts and deopts in Stream classes, without triggering one from the string write in console.log
2013-02-26bench: Make http easier to profileisaacs
Do not run the http/simple.js server in a child process. Fix #4831
2013-02-20benchmark: Fix alignment issues on --html compare outputisaacs
2013-02-20bench: Add bench-cryptoisaacs
2013-02-20bench: Simplify duration arguments to benchmarksisaacs
For throughput benchmarks, run with just 5s durations rather than 1s and 3s. For startup benchmark, run with just a single 1s duration, since it's very consistent anyway.
2013-02-20bench: Consistency in benchmark filenamesisaacs
2013-02-20bench: Remove _bench_timer (no loner used)isaacs
2013-02-20bench: Use wrk for http benchmarkingisaacs
Remove ab, since it's no longer used.
2013-02-20bench: Show % change rather than % differenceisaacs
2013-02-20bench: Add --html to compare scriptisaacs
2013-02-20bench: Fail gracefully if function_call binding failsisaacs
2013-02-20bench: Remove old run scriptisaacs
2013-02-20bench: Replace tls-fragmentation with tls/throughputisaacs
2013-02-20bench: Move tls-connect into benchmark/tlsisaacs
Also, make it work properly with current node.
2013-02-20bench: Make io.c output easier to readisaacs
2013-02-20bench: Remove io.jsisaacs
Better covered by the other benchmark/fs scripts.
2013-02-20bench: Add fs write stream throughputisaacs
2013-02-20bench: Add read-stream throughputisaacs
2013-02-20bench: Move fs-readfile.js to fs/readfile.jsisaacs
2013-02-20bench: Move v8_bench into miscisaacs
2013-02-20bench: Move string_creation into miscisaacs
2013-02-20bench: Remove settimeout (Covered by misc/timeout.js)isaacs
2013-02-20bench: Move timers to misc/timersisaacs
2013-02-20bench: move next-tick to misc/next-tick-breadthisaacs
2013-02-20bench: Move nexttick-2 to misc/next-tick-depthisaacs
x
2013-02-20bench: Move process_loop to misc/spawn-echoisaacs
2013-02-20bench: Add function_call to bench-miscisaacs
2013-02-20bench: Arraysisaacs
2013-02-20bench: Add buffers/dataview_setisaacs
2013-02-20bench: Remove unused 'fast_buffer2' benchmarksisaacs
2013-02-20bench: Merge fast_buffer_creation and buffer_creationisaacs
2013-02-20bench: Buffer read/write benchmarksisaacs
2013-02-20bench: Buffer creationisaacs
2013-02-20bench: buffer-base64-encodeisaacs
2013-02-20bench: misc/startup.jsisaacs
2013-02-20bench: misc/urlisaacs
2013-02-20bench: http benchmarksisaacs
Also: make http_simple less chatty
2013-02-20bench: Remove client_latencyisaacs
No one actually knows what this is supposed to be doing, anyway. It's not a good benchmark.
2013-02-20bench: Remove throughput (covered by benchmark/net)isaacs
2013-02-20bench: net benchmarks using common scriptisaacs
2013-02-20bench: Move net-pipe into benchmark/netisaacs
2013-02-20bench: A compare script for analyzing benchmarksisaacs
2013-02-20bench: add runnerisaacs