How to increase JAVA Heap Size?
Solution 1:
You could use java -Xmx4096m
in order to set your heap to 4 GB.
you could then add export _JAVA_OPTIONS=-Xmx4096m
to your shell by their (.bashrc, .zshrc) file.
You could use java -Xmx4096m
in order to set your heap to 4 GB.
you could then add export _JAVA_OPTIONS=-Xmx4096m
to your shell by their (.bashrc, .zshrc) file.