Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more

NAME

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

SYNOPSIS

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