SYNOPSIS
use Apache::Session::Store::File;
my $store = new Apache::Session::Store::File;
$store->insert($ref);
$store->update($ref);
$store->materialize($ref);
$store->remove($ref);
DESCRIPTION
This module fulfills the storage interface of Apache::Session. The serialized objects are stored in files on your filesystem.OPTIONS
This module requires one argument in the usual Apache::Session style. The name of the option is Directory, and the value is the full path of the directory where you wish to place the files. Example
tie %s, 'Apache::Session::File', undef, {Directory => '/tmp/sessions'};