Re: Lightweight session management

2010-07-29 Thread M. Hammer
I see the point, but still I expect this to be a frequent use-case for Facebook App iframe integration. There, you get the OAuth-Token/Session Secret/whatever only for the initial iframe request, and then usually put them into the session (at least this is suggested by the PHP examples). An

Re: Lightweight session management

2010-07-28 Thread nino martinez wael
Yeah it's prone to fall under YAGNI and if not use time on it when it becomes a problem.. 2010/7/28 Igor Vaynberg > load test it and see if it becomes a problem before spending any > cycles on a solution. > > -igor > > On Wed, Jul 28, 2010 at 7:54 AM, M. Hammer wrote: > > Hello, > > > > in my a

Re: Lightweight session management

2010-07-28 Thread Igor Vaynberg
load test it and see if it becomes a problem before spending any cycles on a solution. -igor On Wed, Jul 28, 2010 at 7:54 AM, M. Hammer wrote: > Hello, > > in my application I would like to have user sessions for storing some data > (mostly related to tracking which pages a user has visited), bu

Lightweight session management

2010-07-28 Thread M. Hammer
Hello, in my application I would like to have user sessions for storing some data (mostly related to tracking which pages a user has visited), but otherwise stay stateless as long as possible to keep memory consumption low. Is there any provision in Wicket for such a scenario? I could run