sharing % across requests

2001-09-06 Thread Miroslav Madzarevic
BlankWhat is the best way to share % across multiple requests ? I first tried with $r-notes('name'='value') but that wasn't persistent across requests (or maybe I was doing it wrong ?). Then I made a system to load data from database once at process ($$) startup and then fetch it from % (module

RE: sharing % across requests

2001-09-06 Thread Geoffrey Young
-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

RE: sharing % across requests

2001-09-06 Thread Geoffrey Young
-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

Re: sharing % across requests

2001-09-06 Thread darren chamberlain
Geoffrey Young [EMAIL PROTECTED] said something to this effect on 09/06/2001: 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

Re: sharing % across requests

2001-09-06 Thread Perrin Harkins
sorry, I think I misread the question - the verbosity threw me. No, I think you got it right. He wants to share a hash between multiple Apache children. I recommend using either MLDBM::Sync or Cache::Cache for this. - Perrin