Skip to content

Instantly share code, notes, and snippets.

@erikfrey
Created August 23, 2011 07:30
Show Gist options
  • Save erikfrey/1164568 to your computer and use it in GitHub Desktop.
Save erikfrey/1164568 to your computer and use it in GitHub Desktop.
erik@roastbeef:~/proj$ time node child.js < bigfile > derp
real 0m6.176s
user 0m4.176s
sys 0m1.916s
erik@roastbeef:~/proj$ time cat bigfile | node child.js | cat > derp
real 0m1.504s
user 0m0.560s
sys 0m0.892s
erik@roastbeef:~/proj$ time cat bigfile | ./child_async | cat > derp
real 0m0.092s
user 0m0.004s
sys 0m0.064s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment