Crixa

A Perl module
Download

Crixa Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Perl Artistic License
  • Price:
  • FREE
  • Publisher Name:
  • Chris Prather
  • Publisher web site:
  • http://search.cpan.org/~perigrin/

Crixa Tags


Crixa Description

Crixa is a Perl module.Developer commentsThe RabbitMQ docs use Python's Pika library for most of their examples. When I was translating the tutorial examples to Perl so I could get a grasp on how different ideas would translate I found myself disliking the default Net::RabbitMQ API. That isn't to say it's bad, just really bare bones. So I went and wrote the API I wanted to use, influenced by he Pika examples.SYNOPSIS use Crixa; my $mq = Crixa->connect( host => 'localhost'); sub send { my $q = $mq->queue( name => 'hello'); $q->publish('Hello World'); } sub receive { my $q = $mq->queue( name => 'hello'); $q->handle_message(sub { say $_->{body} }); }Product's homepage


Crixa Related Software