The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Apache::Session::Lock::MariaDB - Provides mutual exclusion using MariaDB

SYNOPSIS

 use Apache::Session::Lock::MariaDB;

 my $locker = Apache::Session::Lock::MariaDB->new();

 $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);

DESCRIPTION

This is based on Apache::Session::Lock::MySQL but for Apache::Session::MariaDB.

AUTHOR

Best Practical Solutions, LLC <modules@bestpractical.com>

SEE ALSO

Apache::Session::Lock::MySQL, Apache::Session