deno/cli/bench/stdio
2024-08-20 15:14:37 -04:00
..
README.md
stdio.c chore: update the copyright of c, mjs, and jsx (#25005) 2024-08-12 12:41:32 -04:00
stdio.js chore: enable no-console dlint rule (#25113) 2024-08-20 15:14:37 -04: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