Think of how other web applications usually behave. When you request a
resource with a timed out session you normally get redirected to a
login page or a home page. Ultimately this is how weblocks will behave
as well, I just didn't get the chance to implement this bit.
You may want to look at pkuong's work in this area:
http://www.pvk.ca/Blog/Lisp/CommonCold/serialisable_closures_in_sbcl.html
This does what you want but only on SBCL. If you can come up with an
SBCL-specific weblocks extension I'd consider integrating it (though I
am not completely convinced it's a good idea).
Regards,
Slava Akhmechet
> Another Q: I presume the answer is yes, but just want to confirm: a
> session expires after a set amount of time if inactivity, not a period
> of time that the session was created?
Session is configured to expire after some time of inactivity.
Weblocks simply uses hunchentoot sessions so if you look up
hunchentoot documentation you can see in more detail how they operate,
how to configure them, etc.