Mark24 (Yang Zhang)
- Login: Mark24
- Registered on: 04/15/2022
- Last sign in: 04/22/2025
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 0 | 0 |
Activity
04/15/2022
-
09:13 AM Ruby Bug #18733: Heavy GC allocations cause performance issue with Ractor
- One problem I found was that when I ran the same script on different Ruby versions, there was performance gap between them.
``` ruby
require 'benchmark'
def fib(n)
return n if n < 2
fib(n-1) + fib(n-2)
end
puts Benchmark.measure ...