IPC::Transit is a queue framework that has the following goals:
- Serverless
- High Throughput
- Usually Low Latency
- Relatively Good Reliability
- CPU and Memory efficient
- Cross UNIX Implementation
- Multiple Language Compability
- Very few module dependencies
- Supports old version of Perl
- Feature stack is modular and optional
This queue framework has the following anti-goals:
- Guaranteed Delivery
SYNOPSIS
use strict;
use IPC::Transit;
IPC::Transit::send(qname => 'test', message => { a => 'b' });
#...the same or a different process on the same machine
my $message = IPC::Transit::receive(qname => 'test');
Product's homepage
Requirements:
· Perl