Java-Gaming.org
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
Featured games (78)
games approved by the League of Dukes
Games in Showcase (406)
games submitted by our members
Games in WIP (293)
games currently in development
News: Read the Java Gaming Resources, or peek at the official Java tutorials
 
    Home     Help   Search   Login   Register   
Pages: [1]
  ignore  |  Print  
  why does my memory usage spike up and down  (Read 1974 times)
0 Members and 1 Guest are viewing this topic.
Offline Quadro

Senior Newbie





« Posted 2012-09-10 02:30:59 »


when I run other people programs they seem to have a steady and smooth movement not spike up drop spike up drop, also why would the heap size be so big if the used heap is much lower, it's a 2D platformer game so could it be too many threads or objects
Offline Riven
« League of Dukes »

JGO Overlord


Medals: 438
Projects: 4


Hand over your head.


« Reply #1 - Posted 2012-09-10 02:33:33 »

Because your program has spikes in memory allocation, after which the GC kicks in, cleaning up the garbage.

There's nothing else to say really. Look at your code to find the cause.

Hi, appreciate more people! Σ ♥ = ¾
Learn how to award medals... and work your way up the social rankings
Projects: Revenge of the Titans, Titan Attacks, Droid Assault, and Ultratron
Offline ReBirth
« Reply #2 - Posted 2012-09-10 02:39:54 »

Maybe you periodically create new object(s)? well, as long it doesn't affect your game in play time don't mind it too much.

Games published by our own members! Check 'em out!
Try the Free Demo of Revenge of the Titans
Offline sproingie
« Reply #3 - Posted 2012-09-10 02:48:32 »

Since it looks like your spikes are followed by an immediate GC, your allocation spike is likely happening in one place.  If you enable GC logging (see here for an example of how) and add some debug logging to various bits of your program, that can help in tracking down the culprit by matching up the debug log timestamps with the GC log.

Since it's very short-lived garbage, another alternative is to just live with it, since collecting it should be plenty fast.  That's a less palatable option on Android though.
Offline princec
« League of Dukes »

JGO Kernel


Medals: 196
Projects: 3


Eh? Who? What? ... Me?


« Reply #4 - Posted 2012-09-10 11:04:24 »

Also your max heap size looks rather excessive versus your needs there. I'd set it to maybe 260mb and see how it goes.

Cas Smiley

Offline i30817

Junior Member





« Reply #5 - Posted 2012-09-13 11:48:38 »

You're probably creating a large temporary array.
Offline Damocles
« Reply #6 - Posted 2012-09-13 13:22:20 »

A typical memory waster is to build Text out of concanated Strings.
like :  message = message + " is " + "here";

As each time a new String Object is created.

Try using a StringBuffer here.

Offline Best Username Ever

Junior Member





« Reply #7 - Posted 2012-09-13 16:21:50 »

A typical memory waster is to build Text out of concanated Strings.
like :  message = message + " is " + "here";

As each time a new String Object is created.

Try using a StringBuffer here.

The compiler already does that. One new String is created.
Offline Damocles
« Reply #8 - Posted 2012-09-13 16:33:24 »

Yes its one new String object.
I ment the whole instruction with "each time".
When used each frame for example.

Opposite to a StringBuffer where you can append a String without creating a new object.

Offline DrHalfway

Senior Member


Medals: 9
Projects: 1



« Reply #9 - Posted 2012-09-13 16:40:19 »

I'm on the same boat Quadro, one thing i've learnt is to run memory analyzers as you develop the software to catch these sort of things, also if you use external libraries i'd check those too, make sure they aren't the ones causing the garbage collector to go haywire.

If you're developing a game, you can probably come up with a scheme to reuse most frequently used objects. On modern java, the GC's are pretty optimal and on a PC platform it wouldn't matter too much, i'd only start worrying if you were deploying for Android. Then again, reuse has never been anyone's enemy, plenty of pooling tutorials available.

Pages: [1]
  ignore  |  Print  
 
 
You cannot reply to this message, because it is very, very old.

Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
 
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars and Titan!

Add your game by posting it in the WIP section,
or publish it in Showcase.

The first screenshot will be displayed as a thumbnail.

The invasion has landed! On Mars! And you're there to beat 'em!
cubemaster21 (81 views)
2013-05-18 12:29:12

alaslipknot (91 views)
2013-05-17 12:24:48

gouessej (122 views)
2013-05-16 15:53:38

gouessej (114 views)
2013-05-16 15:17:58

theagentd (126 views)
2013-05-16 06:01:13

theagentd (113 views)
2013-05-16 06:00:54

StreetDoggy (158 views)
2013-05-15 06:56:26

kutucuk (180 views)
2013-05-13 08:10:36

kutucuk (180 views)
2013-05-13 06:36:09

UnluckyDevil (187 views)
2013-05-12 20:09:57
Complex number cookbook
by Roquen
2013-04-25 03:47:31

2D Dynamic Lighting
by Oskuro
2013-04-18 07:46:12

2D Dynamic Lighting
by Oskuro
2013-04-18 07:45:57

2D Dynamic Lighting
by Oskuro
2013-04-18 07:23:20

Noise (bandpassed white)
by Roquen
2013-04-06 08:36:01

Noise (bandpassed white)
by Roquen
2013-04-04 07:17:38

Java Data structures
by Roquen
2013-03-30 04:21:12

Topic Request
by kutucuk
2013-03-23 12:42:01
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines | Managed by Enhanced Four Valid XHTML 1.0! Valid CSS!
Page created in 0.097 seconds with 21 queries.