Guest User

Untitled

a guest
Feb 21st, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 KB | None | 0 0
  1. require "benchmark"
  2. Benchmark.bm do |x|
  3. 5.times do
  4. x.report do
  5. 10000.times do
  6. o = Object.new
  7. def o.method; end
  8. end
  9. end
  10. end
  11. end
  12.  
  13. user system total real
  14. 0.100000 0.000000 0.100000 ( 0.096522)
  15. 0.100000 0.000000 0.100000 ( 0.111413)
  16. 0.100000 0.000000 0.100000 ( 0.104038)
  17. 0.090000 0.000000 0.090000 ( 0.095231)
  18. 0.100000 0.000000 0.100000 ( 0.099539)
  19.  
  20. user system total real
  21. 0.130000 0.000000 0.130000 ( 0.142741)
  22. 0.100000 0.000000 0.100000 ( 0.100665)
  23. 0.100000 0.010000 0.110000 ( 0.121455)
  24. 0.100000 0.000000 0.100000 ( 0.102085)
  25. 0.090000 0.000000 0.090000 ( 0.102203)
  26.  
  27. require "benchmark"
  28. Benchmark.bm do |x|
  29. 5.times do
  30. x.report do
  31. 10000.times do
  32. o = Object.new
  33. class << o
  34. def method; end
  35. end
  36. end
  37. end
  38. end
  39. end
  40.  
  41. user system total real
  42. 0.100000 0.010000 0.110000 ( 0.150145)
  43. 0.100000 0.000000 0.100000 ( 0.106283)
  44. 0.110000 0.000000 0.110000 ( 0.115765)
  45. 0.110000 0.000000 0.110000 ( 0.105696)
  46. 0.100000 0.000000 0.100000 ( 0.112317)
  47.  
  48. user system total real
  49. 0.130000 0.000000 0.130000 ( 0.133677)
  50. 0.110000 0.010000 0.120000 ( 0.113726)
  51. 0.110000 0.000000 0.110000 ( 0.105676)
  52. 0.100000 0.000000 0.100000 ( 0.106207)
  53. 0.100000 0.000000 0.100000 ( 0.104637)
Add Comment
Please, Sign In to add comment