-
Notifications
You must be signed in to change notification settings - Fork 5.6k
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
optimize memory usage #140
Comments
This will require a significant amount of refactoring in the way we fork processes. Will likely require a custom binary packaging system. |
a more likely patch as well is to tell V8 to go JITLess and use Ignition, which should tell the engine to no longer allocate a stack for compiling bytecode and instead use the interpreter. This approach has been seen to improve performance so I believe we can set this as well |
@kylecarbs So based on my testing and some further research, here's what I can suggest to make our consumption low V8 by default in
|
@sr229 how can we compile |
@kylecarbs Refer to nodejs/node#26758 |
Left some comments as well for possible flags to include for performance increase in #795 |
We managed to fix this in GH-857 (158M init, 256M with 3-5 extensions) so I'm writing this off as fixed. |
See #136
The text was updated successfully, but these errors were encountered: