in reply to Sharing data structures among http processes?
Let's say that you wrote a few handlers to process a request, and they all need to share some custom Perl data structure. The pnotes() method comes to your rescue.I've been meaning to play with it for a while, but haven't gotten around to it yet. It sure looks cool ;)The handler prepares the data in hash %my_data and calls pnotes() method to store the data internally for other handlers to re-use. All the subsequently called handlers can retrieve the stored data in this way:# a handler that gets executed first my %my_data = (foo => 'mod_perl', bar => 'rules'); $r->pnotes('my_data' => \%my_data);prints:my $info = $r->pnotes('my_data'); print $info->{foo};The stored information will be destroyed at the end of the request.mod_perl
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: (ar0n: pnotes) Re: Sharing data structures among http processes?
by tomhukins (Curate) on Jun 28, 2001 at 02:21 UTC |