Ruslan U. Zakirov wrote:
Hi!
Please point me to good documentation about subj.
Is it possible to initialize some class(MyProjConfig for example)
with some params in first content handler, and then send it trought
other handlers, all it within only one request?
see $r->pnotes() in man Apache and various other mod_perl resources...

# store
$r->pnotes(MyObj => My::Class->new);

# fetch
my $obj = $r->pnotes(MyObj);

HTH

--Geoff

Reply via email to