From: Tatu S. <cow...@ya...> - 2007-03-19 20:01:01
|
--- Jimmy Zhang <cra...@co...> wrote: > Tatu, Are you aware of any pointers that discusses > the behavior for server > JVM a bit more... In addition to your suggestion, I > also think that the Javasoft has good online docs, so I think googling might work. It is possible to change HotSpot inline threshold via: -XX:CompileThreshold=2000 flag to java executable, for example. > behavior > of JVM has to do with file sizes as well... for a > large GML, JVM seems to > reach > steady state (native code) pretty quickly... Yeah, that makes sense since bigger files trigger more processing. So it is likely that most tight loops do get inlined during first (single) processing of larger files. So for really big files, the effect may not be as significant as for small files. It's still a good idea to run it multiple times, if possible. -+ Tatu +- ____________________________________________________________________________________ No need to miss a message. Get email on-the-go with Yahoo! Mail for Mobile. Get started. http://mobile.yahoo.com/mail |