Memory to eclipse

0

I would like my eclipse to go fluid, I have a 4th generation i7, 8gb ram DDR3, SSD 256 gb, I have configured this in my eclipse.ini:

--launcher.XXMaxPermSize
256M
-vmargs
-Xms256m
-Xmx2048m
-XX:PermSize=256m
-XX:MaxPermSize=2048m
-Xverify:none

Do you think it's okay or can I upload it a little more? If I had 16gb ram which of all the attributes do I have to upload?

    
asked by sirdaiz 08.02.2018 в 10:36
source

1 answer

1

Using eclipse, what you should increase is the "heap size" that you actually have defined in 2MB, this is the property that you must modify.

-Xmx2048m

What is the maximum allowed that you defined:

-XX:MaxPermSize=2048m

But I am struck by the features of your PC, in fact the above is enough for Eclipse to work properly. It is important not to have many projects in your workspace because that can cause slow loading of the projects at the beginning.

Review: How to increase the available Heap size for eclipse.

    
answered by 08.02.2018 в 17:12