deno/cli/bench/stdio
2023-01-13 16:51:32 +09:00
..
README.md perf: use fast api for io read/write sync (#15863) 2022-12-02 11:35:18 +05:30
stdio.c chore: update copyright year to 2023 (#17247) 2023-01-02 21:00:42 +00:00
stdio.js chore: add copyright_checker tool and add the missing copyright (#17285) 2023-01-13 16:51:32 +09:00

stdio benchmarks

Compile the C baseline and run the benchmark:

cc stdio.c -o stdio -O3
time dd if=/dev/zero bs=65536 count=500000 | ./stdio
time dd if=/dev/zero bs=65536 count=500000 | deno run stdio.js