BeanItemContainer Lazy Loading

Hi there,

I am developing an application for about one year know. Actually doing some tests and now I came up with the problem that whenever I have a lot of data my application is getting slow. I am using BeanItemContainer and MyBatis so I always call addAll function and have to query all the data. What is the best practice to move implemnt lazy loading in this case. I have ssen that there is the Lazy Query Container addon but could not find a good example. I am also not sure if the Lazy Query Container will support my need of filters on table rows??? Can anyone help me?

Thx & BR
Peter

I am using vaadin version 7.1.0

Hi,

You should check out my
recent blog entry
and
webinar
where we tested various container implementations. With ListContainer it is really easy to make lazy loading. Your filtering should also get to the DB level, otherwise you’ll have to load everything from DB (which is the slow part) and filter it in JVM memory.

cheers,
matti