Re: How to increase number of stored pages in PageStore for Wicket 6.8?

2013-09-24 Thread Martin Grigorov
w this message in context: > >> > > >> > http://apache-wicket.1842946.n4.nabble.com/How-to-increase-number-of-stored-pages-in-PageStore-for-Wicket-6-8-tp4661459.html > >> > Sent from the Users forum mailing list archive at Nabble.com. > >> >

Re: How to increase number of stored pages in PageStore for Wicket 6.8?

2013-09-24 Thread Martin Grigorov
59.html > > > Sent from the Users forum mailing list archive at Nabble.com. > > > > > > - > > > To unsubscribe, e-mail: [hidden email]< > http://user/SendEmail.jtp?type=node&node=4661461&a

Re: How to increase number of stored pages in PageStore for Wicket 6.8?

2013-09-24 Thread Hendy Irawan
t Nabble.com. >> > >> > - >> > To unsubscribe, e-mail: [hidden >> > email]<http://user/SendEmail.jtp?type=node&node=4661461&i=1> >> > For additional commands,

Re: How to increase number of stored pages in PageStore for Wicket 6.8?

2013-09-24 Thread Hendy Irawan
tp://user/SendEmail.jtp?type=node&node=4661461&i=1> > > For additional commands, e-mail: [hidden > > email]<http://user/SendEmail.jtp?type=node&node=4661461&i=2> > > > > > > > ------ > If you reply to this emai

Re: How to increase number of stored pages in PageStore for Wicket 6.8?

2013-09-24 Thread Martin Grigorov
Hi, See org.apache.wicket.settings.IStoreSettings#setMaxSizePerSession By default Wicket gives 10Mb per session. How many pages will fit inside these 10Mb depends on the pages themselves. On Tue, Sep 24, 2013 at 10:34 AM, Hendy Irawan wrote: > Hi, > > When I checked the work/.../wicketFilter-f

Re: How to increase number of stored pages in PageStore for Wicket 6.8?

2013-09-24 Thread francois meillet
Have a look to setMaxSizePerSession() in the IStoreSettings interface application.getStoreSettings().setMaxSizePerSession(Bytes.megabytes(30)); François On Tue, Sep 24, 2013 at 10:34 AM, Hendy Irawan wrote: > Hi, > > When I checked the work/.../wicketFilter-filestore folder it seems that for >

How to increase number of stored pages in PageStore for Wicket 6.8?

2013-09-24 Thread Hendy Irawan
Hi, When I checked the work/.../wicketFilter-filestore folder it seems that for every session Wicket stores the last 3 stateful pages. Will this cause problems when a user opens more than 3 (stateful) tabs at once? How do I increase this number? Is it possible to increase this number for select