Re: Wicket Session grows too big real fast

2008-12-02 Thread Alex Objelean
page). Other than that: using LDM's and DataView/DataProvider instead of ListView will help considerably. Martijn May I ask what LDM is? Is that Lightweight Data Model? -- View this message in context: http://www.nabble.com/Wicket-Session-grows-too-big-real-fast-tp20697077p20802687

Re: Wicket Session grows too big real fast

2008-12-02 Thread kan
you reference in your page). Other than that: using LDM's and DataView/DataProvider instead of ListView will help considerably. Martijn -- View this message in context: http://www.nabble.com/Wicket-Session-grows-too-big-real-fast-tp20697077p20702093.html Sent from the Wicket

Re: Wicket Session grows too big real fast

2008-12-01 Thread Eelco Hillenius
With Wicket 1.3 only one page should be stored in session. You should check if you don't keep references between pages - that would result in 1+N pages (with N being the number of pages you reference in your page). That's optimized though, so shouldn't typically be a problem. See the custom

Re: Wicket Session grows too big real fast

2008-11-29 Thread Flavius
/DataProvider instead of ListView will help considerably. Martijn May I ask what LDM is? Is that Lightweight Data Model? -- View this message in context: http://www.nabble.com/Wicket-Session-grows-too-big-real-fast-tp20697077p20754276.html Sent from the Wicket - User mailing list archive

RE: Wicket Session grows too big real fast

2008-11-29 Thread Jeremy Thomerson
LoadableDetachableModel Jeremy Thomerson http://www.wickettraining.com -- sent from a wireless device -Original Message- From: Flavius [EMAIL PROTECTED] Sent: Saturday, November 29, 2008 9:40 PM To: users@wicket.apache.org Subject: Re: Wicket Session grows too big real fast Martijn

Wicket Session grows too big real fast

2008-11-26 Thread jhp
will be very tedious. Any help to the problem, or more accurate ways to pinpoint the problem, would be greatly appreceated. BR, Jukka -- View this message in context: http://www.nabble.com/Wicket-Session-grows-too-big-real-fast-tp20697077p20697077.html Sent from the Wicket - User mailing list archive

Re: Wicket Session grows too big real fast

2008-11-26 Thread Martijn Dashorst
://www.nabble.com/Wicket-Session-grows-too-big-real-fast-tp20697077p20697077.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED

Re: Wicket Session grows too big real fast

2008-11-26 Thread Johan Compagner
, or more accurate ways to pinpoint the problem, would be greatly appreceated. BR, Jukka -- View this message in context: http://www.nabble.com/Wicket-Session-grows-too-big-real-fast-tp20697077p20697077.html Sent from the Wicket - User mailing list archive at Nabble.com

Re: Wicket Session grows too big real fast

2008-11-26 Thread jhp
page). Other than that: using LDM's and DataView/DataProvider instead of ListView will help considerably. Martijn -- View this message in context: http://www.nabble.com/Wicket-Session-grows-too-big-real-fast-tp20697077p20697523.html Sent from the Wicket - User mailing list archive

Re: Wicket Session grows too big real fast

2008-11-26 Thread jhp
. Jukka Johan Compagner wrote: if you make this: final Recommendation recommendation = (Recommendation) item.getModelObject(); not final does it compile? If it doesnt then you have a leak johan -- View this message in context: http://www.nabble.com/Wicket-Session-grows-too-big

Re: Wicket Session grows too big real fast

2008-11-26 Thread jhp
it entirely. Jukka Johan Compagner wrote: if you make this: final Recommendation recommendation = (Recommendation) item.getModelObject(); not final does it compile? If it doesnt then you have a leak johan -- View this message in context: http://www.nabble.com/Wicket-Session-grows-too

Re: Wicket Session grows too big real fast

2008-11-26 Thread John Krasnay
). Other than that: using LDM's and DataView/DataProvider instead of ListView will help considerably. Martijn -- View this message in context: http://www.nabble.com/Wicket-Session-grows-too-big-real-fast-tp20697077p20697523.html Sent from the Wicket - User mailing list archive

Re: Wicket Session grows too big real fast

2008-11-26 Thread jhp
- that would result in 1+N pages (with N being the number of pages you reference in your page). Other than that: using LDM's and DataView/DataProvider instead of ListView will help considerably. Martijn -- View this message in context: http://www.nabble.com/Wicket-Session-grows-too-big

Re: Wicket Session grows too big real fast

2008-11-26 Thread Martijn Dashorst
then you have a leak johan -- View this message in context: http://www.nabble.com/Wicket-Session-grows-too-big-real-fast-tp20697077p20697806.html Sent from the Wicket - User mailing list archive at Nabble.com

Re: Wicket Session grows too big real fast

2008-11-26 Thread kan
/DataProvider instead of ListView will help considerably. Martijn -- View this message in context: http://www.nabble.com/Wicket-Session-grows-too-big-real-fast-tp20697077p20702093.html Sent from the Wicket - User mailing list archive at Nabble.com

Re: Wicket Session grows too big real fast

2008-11-26 Thread Ladislav Thon
Agree. I was almost shocked :-) by Martijn's e-mail about keeping references between pages. I believed it is a standard practice to keep reference to previous page for the purpose of cancelling, and of course do it all the time. It seems very natural to me. O-oops. LT 2008/11/26 Piller Sébastien

RES: Wicket Session grows too big real fast

2008-11-26 Thread Bruno Cesar Borges
Now that is a really good advice. :-) -Mensagem original- De: kan [mailto:[EMAIL PROTECTED] Enviada em: quarta-feira, 26 de novembro de 2008 14:19 Para: users@wicket.apache.org Assunto: Re: Wicket Session grows too big real fast I am not sure if it always applicable, but usually I do

RES: Wicket Session grows too big real fast

2008-11-26 Thread Bruno Cesar Borges
: quarta-feira, 26 de novembro de 2008 14:21 Para: users@wicket.apache.org Assunto: Re: Wicket Session grows too big real fast Agree. I was almost shocked :-) by Martijn's e-mail about keeping references between pages. I believed it is a standard practice to keep reference to previous page

Re: Wicket Session grows too big real fast

2008-11-26 Thread James Carman
original- De: kan [mailto:[EMAIL PROTECTED] Enviada em: quarta-feira, 26 de novembro de 2008 14:19 Para: users@wicket.apache.org Assunto: Re: Wicket Session grows too big real fast I am not sure if it always applicable, but usually I do not do implements Serializable for domain objects

Re: RES: Wicket Session grows too big real fast

2008-11-26 Thread Casper Bang
original- De: Ladislav Thon [mailto:[EMAIL PROTECTED] Enviada em: quarta-feira, 26 de novembro de 2008 14:21 Para: users@wicket.apache.org Assunto: Re: Wicket Session grows too big real fast Agree. I was almost shocked :-) by Martijn's e-mail about keeping references between pages. I believed

Re: Wicket Session grows too big real fast

2008-11-26 Thread jWeekend
in context: http://www.nabble.com/Wicket-Session-grows-too-big-real-fast-tp20697077p20697523.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e