0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-06 02:52:05 -05:00
deno/cli/bench/stdio
2024-12-31 19:12:39 +00:00
..
README.md
stdio.c
stdio.js

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