NAME
IPC::Manager::Client::MariaDB - Use MariaDB as a message store.
DESCRIPTION
A table 'ipcm_clients' is used to track clients, and a table 'ipcm_messages' is used to hold messages.
SYNOPSIS
use IPC::Manager qw/ipcm_spawn ipcm_connect/;
my $spawn = ipcm_spawn(protocol => 'MariaDB');
my $con1 = $spawn->connect('con1');
my $con2 = ipcm_connect(con2, $spawn->info);
$con1->send_message(con1 => {'hello' => 'con2'});
my @messages = $con2->get_messages;
METHODS
See IPC::Manager::Client.
SOURCE
The source code repository for IPC::Manager can be found at https://https://github.com/exodist/IPC-Manager.
MAINTAINERS
AUTHORS
COPYRIGHT
Copyright Chad Granum <exodist7@gmail.com>.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.