gc options for best JFX performance
Jose Martinez
jmartine_1026 at yahoo.com
Sat Jun 2 07:06:03 PDT 2012
Thanks Jiri. Yeah I understand those things. I was naively hoping that there was some magic concoction of JVM options that works ideally for JFX apps.
I try very hard not to create new objects during game play but because the KeyFrame and KeyValue classes immutable I imagine that those are what are building up in memory and getting cleaned up by the GC. I create all my projectiles and enemy units before the round begins. But with each shot fired I have to create KeyFrames and KeyValues to send the projectile to its destination. Maybe making those classes non-immutable will help in keeping memory down. I imagine there might be some complexity to changing a Keyframe that is attached to a Timeline, or a KayValue that is attached to a KeyFrame, which is probably why they were designed to be immutable.
Also I have to create new Duration objects to keep track of time.
thanks
jose
________________________________
From: "goddard at seznam.cz" <goddard at seznam.cz>
To: Jose Martinez <jmartine_1026 at yahoo.com>
Cc: openjfx mailing list <openjfx-dev at openjdk.java.net>
Sent: Saturday, June 2, 2012 4:52 AM
Subject: Re: gc options for best JFX performance
Hi,
I believe there're no generic JVM settings for "best performance" Until you have perf. issues, I'd live with the default.
If you want to do perf. tuning, it's application / environment dependent. Identify your bottleneck (network, i/o, memory, code etc.) and then try specific settings for that one.
If you have big GC pauses, think about how much memory your app uses and if the heap is not too large, or what's the lifetime of objects in your app and adjust the generations in the heap accordingly.
Regards, Jiri
------------ Původní zpráva ------------
Od: Jose Martinez <jmartine_1026 at yahoo.com>
Předmět: gc options for best JFX performance
Datum: 02.6.2012 07:36:54
----------------------------------------
Hello,
I have tried the following GC modes but none of them get rid of the noticeable
'stop the world' delays.
-XX:+UseParallelGC
-XX:-UseParallelOldGC
-XX:-UseParNewGC
-XX:+UseConcMarkSweepGC
Out of those my favorite so far is UseParNewGC.
I also use the following options.
--Xms150m -Xmx200m -XX:MaxGCPauseMillis=1
Are there other options that you would recommend? Has anyone come up with a
concoction of options that works best or a rule of thumb for configuring GC in
JFX applications?
If I cannot find a good set of options I will have to resort to calling
System.gc() at strategic intervals.
thanks
jose
More information about the openjfx-dev
mailing list