Performance issues due to Garbage Collector

TSHTSH
edited June 2014 in How To...

So I've been having performance issues. Screen freezes mainly which I concluded are due to the garbage collector. Is there a way to avoid using the JVM GC as I have enough ram for the assets and data to stay in memory for the length of the sketch?

Any tricks to avoid these garbage collection performance issues?

Answers

  • Answer ✓

    Any tricks to avoid these garbage collection performance issues?

    Reuse/recycle objects rather than instantiating new 1s! *-:)

  • Thanks GoToLoop!

Sign In or Register to comment.