We are about to switch to a new forum software. Until then we have removed the registration on this forum.
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
Reuse/recycle objects rather than instantiating new 1s! *-:)
Thanks GoToLoop!