I was wondering if it is possible to tweak the way garbage collector works on JavaMe in order to improve performance somehow(may reducing the number of passages)? I´ve seen some articles about it, but mostly directed Java SE and most of them says GC is highly dependant on the maker. How much would that be.
|
|
|
|
|
|
|
When the garbage collector is triggered is largely a mistery unless you have first hand knowledge of how the particular VM your application is running on was implemented and exactly how it was configured and customized for the specific phone you are using. Calling java.lang.System.gc() is no guarantee that the garbage collector is triggered. It usually merely increases the probablility of the VM launching garbage collection very soon. I have found that calling System.gc() 3 times consecutively in the same Thread but from 3 different methods tends to work reasonably well. There are many ways to work around ineficiencies in the JavaME standard API implementations in order to reduce the amount of garbage you generate:
... |
||||||
|
|
|
I don't see any possible way to tweak the garbage collection behavior in J2ME. If you have problems with pauses induced by garbage collections, you have to do two things:
|
||||||
|
|
|
Thanks for all the input people. I´ve seen it´s not possible to tweak the GC for Java Me capable devices. At least not in any easy or usefull way. I´ll leave this question open anyway, in case this scenario changes somehow in the time being. :) |
||
|
|
