• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

GWT CellTable IE memory leak

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello,

we have a GWT application (2.4) with a list which is based on the GWT CellTable class. The list has about 10 columns and 20-30 rows. Some of the cells are only text fields but some of them are custom defined cells such as clickable cells containing image resources. Some of the data in the list gets updated every 3 seconds via RPC calls.
It works in every browser but we have recently discovered that it has a constantly growing memory usage in IE and the processor usage also gets so high that the whole computer freezes after a couple of minutes. In other browsers we measured normal CPU usage (it gets a bit higher when the data is updated) and the memory usage is also normal. The memory usage grows a bit when the data is updated but gets cut back afterwards as the garbage collector does its job.
We are not using any native JS at this part of the code that could cause memory leaking. Also tried to find something with Drips with no luck - it didn't show any problems. I have tried to narrow down the problematic part and it seems that the leak happens if I call setRowData on the list (I have tried using ListDataProvider instead of direct manipulation but it didn't help either).
Has anybody seen anything similar to this?

thanks,
Gabor
 
Ranch Hand
Posts: 70
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I want to use GWT cell table can you provide some code example how to use it.
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic