mirror of
https://github.com/ruby/ruby.git
synced 2026-01-27 04:24:23 +00:00
19 lines
310 B
YAML
19 lines
310 B
YAML
type: lib/benchmark_driver/runner/ractor
|
|
benchmark:
|
|
ractor_fstring_random: |
|
|
i = 0
|
|
str = "same".dup
|
|
while i < 2000000
|
|
-(i.to_s.freeze)
|
|
i += 1
|
|
end
|
|
ractor_fstring_same: |
|
|
i = 0
|
|
str = "same".dup
|
|
while i < 2000000
|
|
-str
|
|
i += 1
|
|
end
|
|
loop_count: 1
|
|
ractor: 4
|