Mike Orr <[EMAIL PROTECTED]> wrote:
> > Is there any mechanism for keeping persistent data that isn't
> > session-specific? I.e., a session not tied to a browser.
> >
> > I figure I could just put the stuff in a module global, but the
> > session has stuff to be persistent across AppServer invocations.
>
> pickle
> shelve
> database (normal, with pickles, or with MiddleKit)
> ZODB (standalone)
> rfc822 or ConfigParser files
>
> It partly depends on whether any process may write to it at any time,
> or whether only a few processes do the writing occasionally and everybody else
> just does reading.
I was just hoping I could use session, since it already exists in
Webware, as well as configuration, different backends, etc. What I
want is functionally *just like* the session, just not tied to a SID.
Basically, I'm creating data that is tied to a form, not a browser --
so maybe just having a way to give my own ID to the session would be
fine too. But it doesn't look like I can do that...?
Ian
_______________________________________________
Webware-discuss mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/webware-discuss