Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 29th, 2012  |  syntax: None  |  size: 0.41 KB  |  hits: 13  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. ~/projects/jruby ➔ time jruby bench_puts.rb 10000000 > /dev/null
  2.  
  3. real    0m7.841s
  4. user    0m8.339s
  5. sys     0m0.597s
  6.  
  7. ~/projects/jruby ➔ time ruby1.9 bench_puts.rb 10000000 > /dev/null
  8.  
  9. real    0m5.646s
  10. user    0m5.150s
  11. sys     0m0.162s
  12.  
  13. ~/projects/jruby ➔ time ../jruby-1.6.2/bin/jruby bench_puts.rb 10000000 > /dev/null
  14.  
  15. real    0m49.814s
  16. user    0m30.683s
  17. sys     0m15.331s
  18.  
  19. ~/projects/jruby ➔ jruby -e "puts 'hello'; sleep"
  20. hello
  21. ^C