ActionsLike0
Bug #13167
closedDir.glob is 25x slower since Ruby 2.2
Description
Hello,
we've found a huge speed regression in our Rails app. After some digging the reason is in Dir.glob
method which is much slower since Ruby 2.2.6. This is probably Windows only!
This code is used heavily in Rails for partial lookups:
Dir.glob('c:/test/myapp/app/views/common/_menu_stats{.en,}{.html,}{}{.erb,.builder,.raw,.ruby,.jbuilder,.coffee,}')
Comparsion (x64):
jruby 9.1.7.0 2540 i/s
ruby 2.1.5 2568 i/s
ruby 2.1.9 2569 i/s
ruby 2.2.6 99 i/s 25 times slower!
ruby 2.3.3 102 i/s
ruby 2.4.0 103 i/s
I would like to help, but I don't know much about Ruby C internals. Please let me know if you need any additional info. Now we're stuck at 2.1.9 because this issue makes the development on more recent versions unusable.
Files
Updated by nobu (Nobuyoshi Nakada) about 8 years ago
- Related to Bug #10015: Performance regression in Dir#[] added
Updated by nobu (Nobuyoshi Nakada) about 8 years ago
- Description updated (diff)
Updated by ahorek (Pavel Rosický) over 7 years ago
- File logruby24.txt logruby24.txt added
- File logruby21.txt logruby21.txt added
Updated by h.shirosaki (Hiroshi Shirosaki) over 7 years ago
- File 0001-dir.c-performance-fix-with-braces.patch added
- File bench_dir_glob.rb bench_dir_glob.rb added
- File 0001-dir.c-performance-fix-with-braces-using-cache.patch 0001-dir.c-performance-fix-with-braces-using-cache.patch added
Updated by naruse (Yui NARUSE) over 7 years ago
- Related to Feature #13873: Optimize Dir.glob with FNM_EXTGLOB added
Updated by h.shirosaki (Hiroshi Shirosaki) about 7 years ago
- File deleted (
0001-dir.c-performance-fix-with-braces.patch)
Updated by ahorek (Pavel Rosický) over 6 years ago
- File linux_braces.png linux_braces.png added
- File linux_list.png linux_list.png added
- File linux_recursive.png linux_recursive.png added
- File windows_braces.png windows_braces.png added
- File windows_list.png windows_list.png added
- File windows_recursive.png windows_recursive.png added
- File bench_dir_glob2.rb bench_dir_glob2.rb added
Updated by h.shirosaki (Hiroshi Shirosaki) over 6 years ago
- Status changed from Open to Assigned
- Assignee set to nobu (Nobuyoshi Nakada)
Updated by nobu (Nobuyoshi Nakada) over 6 years ago
- Assignee changed from nobu (Nobuyoshi Nakada) to h.shirosaki (Hiroshi Shirosaki)
Updated by nobu (Nobuyoshi Nakada) over 2 years ago
- Related to Bug #19042: Bug: Dir.glob ignores subdirectories in alternation when alternation is preceded by recursive directory pattern added
ActionsLike0