in reply to Re: Caching data with mod_perl
in thread Caching data with mod_perl
You really should have a look at Apache::Cache, too! It's doing exactly what you described.. The bad news is, that it doesn't come with the standard package and is likely to not be installed on the machine you want to have it run on.
A more general approach would be using Apache::Storage, which isn't included by default either :( Both of the above modules provide inter-process shared memory, btw.
If you really do want to do it yourself, I would at least look how this modules are doing their job; you probably can learn a lot by doing this.. Especially using shared memory is something you really do want to have..
Regards,
-octo
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: Re: Caching data with mod_perl
by perrin (Chancellor) on Jul 14, 2002 at 21:56 UTC | |
by caedes (Pilgrim) on Jul 15, 2002 at 04:07 UTC |