Created
August 23, 2011 07:30
-
-
Save erikfrey/1164568 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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