简体   繁体   中英

How to config file sts.ini with RAM 8GB for sts 3.5.0?

This is my file "sts.ini", I configed but it something still run very slow. Who can help me please?

--launcher.XXMaxPermSize 4096M -vmargs -Dosgi.requiredJavaVersion=1.6 -Xms1024m -Xmx2048m -XX:MaxPermSize=1024m

I think the issue here is that you are trying to change the PermSize (see that you put it twice!!). If you want more ram you have to change the Xmx and Xms

example:

-Xms4g -Xmx8g -XX:MaxPermSize=1024m

That way you get up to 8gb of ram and start with 4gb.

Hope it helps!

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM