Slide 19
Slide 19 text
❯ ruby -rbenchmark -e 'Benchmark.bm { |x| x.report { `rubocop
/path/to/file 2>&1 >/dev/null` }}'
user system total real
0.000099 0.000637 0.602601 ( 0.886394)
❯ ruby -rbenchmark -e 'Benchmark.bm { |x| x.report { `rubocop-daemon
exec -- /path/to/file 2>&1 >/dev/null` }}'
user system total real
0.000050 0.000564 0.073490 ( 0.090813)
● 実行時間が 0.89 秒 -> 0.09 秒 (約 10 倍速) に短縮 🎉
rubocop-daemon で 10 倍弱高速化できる