-
Notifications
You must be signed in to change notification settings - Fork 302
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
Performance - Out Of Memory #642
Comments
Lazy loading of classes out of the path jars might help here. |
Or, instead of loading classes as class nodes, only use a class which implements |
Or use the current style of asm api but with SKIP_CODE flag. Visitor API is kind neat as its faster, but we're using the OOP API everywhere here. |
User error, buy more ram |
then....how to solve this problem?I am not very clear about the solutions mentioned above 😢 |
Hello @Maskhe, |
I have seen many issues reporting the same issue. So I will open this and merge all the duplicates here.
There are two kinds of messages: Java heap space and GC overhead limit exceeded.
This could be resolved by increasing the heap space with
-Xmx
such as-Xmx6G
, but in other cases, the jar attempted for deobfuscation could be very large and it could not be resolved.Here are some possible solutions if that is the case.
Could also be related to JavaVM.
The text was updated successfully, but these errors were encountered: