Re: Page/Session persistence on AppEngine

2012-03-30 Thread Per
.nabble.com/Page-Session-persistence-on-AppEngine-tp4475827p4518388.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h

Re: Page/Session persistence on AppEngine

2012-03-16 Thread Martin Grigorov
Hi, Read https://cwiki.apache.org/confluence/display/WICKET/Page+Storage You need custom IDataStore. By default Wicket uses DiskDataStore. With GAE-initializer this is replaced with HttpSessionDataStore, see org.apache.wicket.pageStore.memory.DataStoreEvictionStrategy as well. You'll need to

Page/Session persistence on AppEngine

2012-03-15 Thread Chris Merrill
So I've got a problem with my sessions getting too big on AppEngine. I've already done some of the more obvious optimizations, but before going further, I'd like to get some insight into how many pages are being stored in the page map and how big they are. I traversed down into PageStoreManager