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>