Re: GWT Server Memory Leak

2016-01-11 Thread lucyjava
We have very similar memory leak symptom as described in this post and the bug6193, although we are using GWT 2.6.1, request factory, hibernate, production mode.

Re: GWT Server Memory Leak

2012-07-27 Thread Thomas Broyer
On Friday, July 27, 2012 4:14:19 AM UTC+2, Aldo wrote: Request Factory. GWT 2.3. This is a known issue then, which has been fixed in 2.4: http://code.google.com/p/google-web-toolkit/issues/detail?id=6193 Last question I didn't understand correctly, but after analyzing the heap dump I

GWT Server Memory Leak

2012-07-26 Thread Aldo Neto
Hi, I'm deploying my app in a local webserver and I'm experiencing a Memory Leak. I analysed the heap with the jmap/Eclipse Memory Analyzer Tool and apparently the objects returned to the client are not being freed. I'm closing all Entity Managers after using them in a search (for instance), but

Re: GWT Server Memory Leak

2012-07-26 Thread Thomas Broyer
GWT-RPC or RequestFactory? Which version of GWT? What are they referenced from? On Friday, July 27, 2012 3:54:36 AM UTC+2, Aldo wrote: Hi, I'm deploying my app in a local webserver and I'm experiencing a Memory Leak. I analysed the heap with the jmap/Eclipse Memory Analyzer Tool and

Re: GWT Server Memory Leak

2012-07-26 Thread Aldo Neto
Request Factory. GWT 2.3. Last question I didn't understand correctly, but after analyzing the heap dump I saw many entities still present in memory. Apparently the entity manager didn't release them completely, although I'm calling em.close() every time. Tks for you reply. On Thu, Jul 26,