-
-
Notifications
You must be signed in to change notification settings - Fork 32
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
Enable yjit #3039
Comments
Check #3039 first. --------- Co-authored-by: Shane Becker <[email protected]>
✅ I have set Thanks @just1602! |
What are our options here? Can we increase our manage the quantity of memory every dyno have? This is possible, I think the JIT compiler have a bigger memory footprint. |
I have re-enabled YJIT in staging and production |
The |
I noticed you're using the jemalloc build pack. Have you set a You likely want to set:
https://gist.github.com/jjb/9ff0d3f622c8bbe904fe7a82e35152fc |
thank you @bensheldon! i just set that in production. |
Before we merge #3038, we should add one of the following environment variable to production :
RUBY_YJIT_ENABLE=1
orRUBYOPT="--yjit"
, so ruby is gonna run withyjit
enabled, which is supposed to make our application faster and reduce some resources' consumption over time.The text was updated successfully, but these errors were encountered: