-
-
Notifications
You must be signed in to change notification settings - Fork 925
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change AOT class generation for speedier requires #2234
Comments
"too long" but I want to add the following
|
Added flag for old behavior and removed .class from default search logic in f5c2edf. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently, AOT compiled classes are searched by
require
by adding the.class
suffix to the search strategy. In the very common case of just using JRuby to execute Ruby (i.e., non-AOT) this means twice as many filesystem lookups and they always fail. Changing the way AOT file generation works would allow us to speed up requiring files in the dominant use case.Relevant IRC discussion from Nov. 24, 2014:
The text was updated successfully, but these errors were encountered: