1Session::Postgres(3)  User Contributed Perl Documentation Session::Postgres(3)
2
3
4

NAME

6       Apache::Session::Postgres - An implementation of Apache::Session
7

SYNOPSIS

9        use Apache::Session::Postgres;
10
11        #if you want Apache::Session to open new DB handles:
12
13        tie %hash, 'Apache::Session::Postgres', $id, {
14           DataSource => 'dbi:Pg:dbname=sessions',
15           UserName   => $db_user,
16           Password   => $db_pass,
17           Commit     => 1
18        };
19
20        #or, if your handles are already opened:
21
22        tie %hash, 'Apache::Session::Postgres', $id, {
23           Handle => $dbh,
24           Commit => 1
25        };
26

DESCRIPTION

28       This module is an implementation of Apache::Session.  It uses the Post‐
29       gres backing store and no locking.  See the example, and the documenta‐
30       tion for Apache::Session::Store::Postgres for more details.
31

USAGE

33       The special Apache::Session argument for this module is Commit.  You
34       MUST provide the Commit argument, which instructs this module to either
35       commit the transaction when it is finished, or to simply do nothing.
36       This feature is provided so that this module will not have adverse
37       interactions with your local transaction policy, nor your local data‐
38       base handle caching policy.  The argument is mandatory in order to make
39       you think about this problem.
40

AUTHOR

42       This module was written by Jeffrey William Baker <jwbaker@acm.org>.
43

SEE ALSO

45       Apache::Session::File, Apache::Session::Flex, Apache::Session::DB_File,
46       Apache::Session::Postgres, Apache::Session
47
48
49
50perl v5.8.8                       2004-02-24              Session::Postgres(3)
Impressum