增加 Eclipse 的最大堆記憶體

要增加 Eclipse 使用的最大堆記憶體量,請編輯位於 Eclipse 安裝目錄中的 eclipse.ini 檔案。

此檔案指定 Eclipse 啟動的選項,例如要使用的 JVM 以及 JVM 的選項。具體來說,你需要編輯 -Xmx JVM 選項的值(如果不存在,則建立一個)。

下面是一個示例配置,它將最大堆記憶體設定為 1 GB(1024 m)。相關的線路是 -Xmx1024m-這將取代現有的 -Xmx*系列:

-startup
plugins/org.eclipse.equinox.launcher_1.3.200.v20160318-1642.jar
--launcher.library
C:/Users/user1/.p2/pool/plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.400.v20160518-1444
-product
org.eclipse.epp.package.java.product
--launcher.defaultAction
openFile
-showsplash
org.eclipse.platform
--launcher.appendVmargs
-vmargs
-Xms256m
-Xmx1024m