[Zope] [ANN] FSSession 0.1.0

Pavlos Christoforou pavlos@gaaros.msrc.sunysb.edu
Sun, 28 Nov 1999 00:59:40 -0500 (EST)


FSSession 0.1.0 is available at:
http://www.zope.org/Members/gaaros/FSSession

This is a module that stores Session information on the filesystem similar
to Anthony Baxter's SQLSession. Installation instructions and simple
documentation are available at the above URL.

Examples of usage:

<dtml-call startSession>
<dtml-call "FSSession.set('expensivemethod',expensivemethod())">    

If expensivemethod returns a list you can then
retrieve it in a future session by:

<dtml-in "FSSession['expensivemethod']">
<dtml-var sequence-item>
</dtml-in>


Enjoy

Pavlos