Difference between revisions of "ChangingTheHeapSize"
From Protege Wiki
(New page: =Adding More Memory to Protege 4= '''In Progress''' == Non-OS X Operating Systems== ==OS X== ===Editting the Info.plist=== Navigate to the Protege 4 application in the finder and ...) |
(→Editting the Info.plist) |
||
Line 1: | Line 1: | ||
− | |||
=Adding More Memory to Protege 4= | =Adding More Memory to Protege 4= | ||
Line 17: | Line 16: | ||
[[Image:AddingMoreMemoryShowPackageContents.png|Show Package Contents]] | [[Image:AddingMoreMemoryShowPackageContents.png|Show Package Contents]] | ||
+ | A new finder window will come up and in that window navigate to Contents and edit the Info.plist file in a text editor (alternatively you can use the os x plist editor by double-clicking if it is installed). Near the bottom of this file there are the lines | ||
+ | <pre> | ||
+ | <key>VMOptions</key> | ||
+ | <array> | ||
+ | <string>-Xms200M</string> | ||
+ | <string>-Xmx200M</string> | ||
+ | <string>-Dosgi.clean=true</string> | ||
+ | </array> | ||
+ | </pre> | ||
+ | Modify the ''-Xmx'' and (optionally) the ''-Xms'' lines to the desired amount of memory | ||
+ | <pre> | ||
+ | <key>VMOptions</key> | ||
+ | <array> | ||
+ | <string>-Xms800M</string> | ||
+ | <string>-Xmx800M</string> | ||
+ | <string>-Dosgi.clean=true</string> | ||
+ | </array> | ||
+ | </pre> | ||
==Users with the zip file distribution== | ==Users with the zip file distribution== |
Revision as of 05:49, August 20, 2008
Contents
Adding More Memory to Protege 4
In Progress
Non-OS X Operating Systems
OS X
Editting the Info.plist
Navigate to the Protege 4 application in the finder and right click on the Protege 4 owl editor application. Select "Show Package Contents".
A new finder window will come up and in that window navigate to Contents and edit the Info.plist file in a text editor (alternatively you can use the os x plist editor by double-clicking if it is installed). Near the bottom of this file there are the lines
<key>VMOptions</key> <array> <string>-Xms200M</string> <string>-Xmx200M</string> <string>-Dosgi.clean=true</string> </array>
Modify the -Xmx and (optionally) the -Xms lines to the desired amount of memory
<key>VMOptions</key> <array> <string>-Xms800M</string> <string>-Xmx800M</string> <string>-Dosgi.clean=true</string> </array>