Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2013
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Benchmark source http://spion.github.io/posts/analysis-generators-and-other-async-patterns-node.html
  2. $ node performance.js -t 1 -n 10000 ./examples/promiseishQ.js
  3. benchmarking ./examples/promiseishQ.js
  4. {"time":14438,"mem":516.59375,"errors":0,"lastErr":null}
  5.  
  6. results for 10000 parallel executions, 1 ms per I/O op
  7.  
  8. file            time(ms)  memory(MB)
  9. promiseishQ.js     14438      516.59
  10.  
  11. $ node performance.js -t 1 -n 10000 ./examples/async.js
  12. benchmarking ./examples/async.js
  13. {"time":876,"mem":55.0625,"errors":0,"lastErr":null}
  14.  
  15. results for 10000 parallel executions, 1 ms per I/O op
  16.  
  17. file      time(ms)  memory(MB)
  18. async.js       876       55.06
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement