> -----Original Message-----
> From: Geoffrey Young [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, September 06, 2001 10:16 AM
> To: 'Miroslav Madzarevic'; [EMAIL PROTECTED]
> Subject: RE: sharing % across requests
>
>
>
>
> > -----Original Message-----
> > From: Miroslav Madzarevic [mailto:[EMAIL PROTECTED]]
> > Sent: Thursday, September 06, 2001 10:02 AM
> > To: [EMAIL PROTECTED]
> > Subject: sharing % across requests
> >
> >
> > BlankWhat is the best way to share % across multiple requests ?
>
> it's called maintaining state - read the eagle book, chapter 5.
>
> one common solution is Apache::Session
>
sorry, I think I misread the question - the verbosity threw me. If you
are looking to store a datastructure on disk (such as a hash) then you
can use Storable, which allows you to serialize and deserialize your data
on demand. Apache::Session has the ability to do the same, but it's not
entirely intuitive if you aren't already familiar with it.
there are also basic constructs like PerlSetVar and PerlAddVar, as well as
Apache::Storage...
again, sorry...
--Geoff