Hi
Im wondering if there is a way to call gc from code, hopefully to free some memory...
Hi
Im wondering if there is a way to call gc from code, hopefully to free some memory...
You can request it with
System.gc();
Although the important note is this is only a request. There is no guarantee that the GC will run.