=head1 NAME Apache2::ConnectionUtil - Perl API for Apache connection utils =head1 Synopsis use Apache2::Connection (); use Apache2::ConnectionUtil (); use Apache2::RequestRec (); # grab the connection object; my $c = $r->connection; # share perl objects like $r->pnotes $old_val = $c->pnotes($key => $value); =head1 Description C provides the L utilities API. =head1 API C provides the following functions and/or methods: =head2 C Share Perl variables between requests over the lifetime of the connection. $old_val = $c->pnotes($key => $val); $val = $c->pnotes($key); $hash_ref = $c->pnotes(); =over 4 =item obj: C<$c> ( C> ) =item opt arg1: C<$key> ( string ) A key value =item opt arg2: C<$val> ( SCALAR ) Any scalar value (e.g. a reference to an array) =item ret: (3 different possible values) if both, C<$key> and C<$val> are passed the previous value for C<$key> is returned if such existed, otherwise undef is returned. if only C<$key> is passed, the current value for the given key is returned. if no arguments are passed, a hash reference is returned, which can then be directly accessed without going through the C interface. =item since: 2.0.3 =back See (C>) for the details of the C method usage. The usage is identical except for a few differences. First is the use of C<$c> instead of C<$r> as the invocant. The second is that the the data persists for the lifetime of the connection instead of the lifetime of the request. If the connection is lost, so is the data stored in C. =head1 See Also L. L. L. =head1 Copyright mod_perl 2.0 and its core modules are copyrighted under The Apache Software License, Version 2.0. =head1 Authors L. =cut