1Apache::Session::Store:U:sDeBr_FCiolnet(r3i)buted Perl DAopcaucmheen:t:aSteisosnion::Store::DB_File(3)
2
3
4

NAME

6       Apache::Session::Store::DB_File - Use DB_File to store persistent
7       objects
8

SYNOPSIS

10        use Apache::Session::Store::DB_File;
11
12        my $store = new Apache::Session::Store::DB_File;
13
14        $store->insert($ref);
15        $store->update($ref);
16        $store->materialize($ref);
17        $store->remove($ref);
18

DESCRIPTION

20       This module fulfills the storage interface of Apache::Session.  The
21       serialized objects are stored in a Berkeley DB file using the DB_File
22       Perl module.  If DB_File works on your platform, this module should
23       also work.
24

OPTIONS

26       This module requires one argument in the usual Apache::Session style.
27       The name of the option is FileName, and the value is the full path of
28       the database file to be used as the backing store.  If the database
29       file does not exist, it will be created.  Example:
30
31        tie %s, 'Apache::Session::DB_File', undef,
32           {FileName => '/tmp/sessions'};
33

AUTHOR

35       This module was written by Jeffrey William Baker <jwbaker@acm.org>.
36

SEE ALSO

38       Apache::Session, DB_File
39
40
41
42perl v5.32.1                      2021-01-26Apache::Session::Store::DB_File(3)
Impressum