Re: Memory growth in GWT Compiler

2013-07-02 Thread Ranjith Chungath
I compiled it with 2GB without memory dumping and as you mentioned, System.gc() was called and the graph was uniform similar to my second graph. Thanks, Ranjith On Saturday, June 29, 2013 6:30:22 PM UTC+5:30, Jens wrote: > Should GWT be calling System.gc() by default after each permutat

Re: Memory growth in GWT Compiler

2013-06-29 Thread Jens
> > Should GWT be calling System.gc() by default after each permutation > compile so that the heap does not grow? (Right now it does that only with > the -Dgwt.memory.usage option) GWT calls System.gc() multiple times in order to give you more accurate memory statistics. GWT just wants to ma

Memory growth in GWT Compiler

2013-06-28 Thread Ranjith Chungath
Hi, The following is the memory graph from JVisualVM of the GWT compiler when compiling my modules. I was trying to understand the memory consumption at different stages of t