Tori Mitchell Posted November 17, 2008 Share Posted November 17, 2008 Oi... there any way to increase the heap allotment ala -XmsXXXXm in SM? I can call another process inside the app that I'm writing but that's kinda... ghetto. Link to comment Share on other sites More sharing options...
Jesse Barnum Posted November 17, 2008 Share Posted November 17, 2008 Nope. This is hard-coded into the C code which launches the plugin JVM. Besides, whichever plugin launches the JVM first wins, so even if we made a special exception and recompiled a modified version of the plugin, that would rely on being the only plugin running that starts the JVM. I believe we have the max heap size set to 64 megs at the moment. Link to comment Share on other sites More sharing options...
Tori Mitchell Posted November 18, 2008 Author Share Posted November 18, 2008 (edited) Yeargh... thus, I must execute a new process with the correct Xms in the code... this is kinda funny though. My friend kinda dies when he saw it. Kludge workaround but I'm implementing a data transfer/munge thing so, I'm used to it. Still though, this is so much better than what I had before that I could really care less. It's awesome Jesse. Thanks. Edited November 18, 2008 by Guest Link to comment Share on other sites More sharing options...
Jesse Barnum Posted November 19, 2008 Share Posted November 19, 2008 If it's a data manipulation process, maybe you could process a chunk at a time using an InputStream or a Reader without having to pull in all the data into memory simultaneously...? Link to comment Share on other sites More sharing options...
Recommended Posts
This topic is 5777 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now