The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Apache::Session::Lock::File - Provides mutual exclusion using flock

SYNOPSIS

 use Apache::Session::Lock::File;
 
 my $locker = new Apache::Session::Lock::File;
 
 $locker->acquire_read_lock($ref);
 $locker->acquire_write_lock($ref);
 $locker->release_read_lock($ref);
 $locker->release_write_lock($ref);
 $locker->release_all_locks($ref);

 $locker->clean($dir, $age);

DESCRIPTION

Apache::Session::Lock::Memorycached fulfills the locking interface of Apache::Session. NO locking is using .

CONFIGURATION

none

NOTES

AUTHOR

This module was written by eric german <germanlinux@yahoo.fr>

SEE ALSO

Apache::Session