debug icon indicating copy to clipboard operation
debug copied to clipboard

Improve the performance for record & replay

Open ono-max opened this issue 2 years ago • 1 comments

Here is a performance comparison.

  Execution Time(s) Ratio to existing implementation
Existing implementation 73.743 1.0
Current Proposal 46.616 1.58

Script for measuring performance

def index
    binding.break # <- Start a program here
    1_000.times {
      respond_to do |format|
        format.html # index.html.erb
      end
    }
  end #<- Pause a program here
  • ruby 3.2.2 (2023-03-30 revision e51014f9c0) [arm64-darwin21]
  • MacBook Pro (16-inch, 2021)
  • Chip: Apple M1 Max
  • Memory: 32 GB

ono-max avatar May 27 '23 04:05 ono-max

Could you explain your idea?

ko1 avatar Sep 25 '23 08:09 ko1