2017 © Pedro Peláez
 

library thumper

AMQP Tools

image

php-amqplib/thumper

AMQP Tools

  • Friday, May 27, 2016
  • by videlalvaro
  • Repository
  • 18 Watchers
  • 248 Stars
  • 36,734 Installations
  • PHP
  • 4 Dependents
  • 0 Suggesters
  • 57 Forks
  • 6 Open issues
  • 7 Versions
  • 13 % Grown

The README.md

Thumper

Latest Version on Packagist ![Software License][ico-license] Build Status ![Coverage Status][ico-scrutinizer] Quality Score ![Total Downloads][ico-downloads], (*1)

Thumper is a PHP library that aims to abstract several messaging patterns that can be implemented over RabbitMQ., (*2)

Inside the examples folder you can see how to implement RPC, parallel processing, simple queue servers and pub/sub., (*3)

Install

Via Composer, (*4)

``` bash $ composer require php-amqplib/thumper, (*5)


## About the Examples Each example has a README.md file that shows how to execute it. All the examples expect that RabbitMQ is running. They have been tested using RabbitMQ 2.1.1 For example, to publish message to RabbitMQ is as simple as this: $producer = new Thumper\Producer($connection); $producer->setExchangeOptions(array('name' => 'hello-exchange', 'type' => 'direct')); $producer->publish($argv[1]); And then to consume them on the other side of the wire: $myConsumer = function($msg) { echo $msg, "\n"; }; $consumer = new Thumper\Consumer($connection); $consumer->setExchangeOptions(array('name' => 'hello-exchange', 'type' => 'direct')); $consumer->setQueueOptions(array('name' => 'hello-queue')); $consumer->setCallback($myConsumer); //myConsumer could be any valid PHP callback $consumer->consume(5); //5 is the number of messages to consume. ### Queue Server This example illustrates how to create a producer that will publish jobs into a queue. Those jobs will be processed later by a consumer –or several of them–. ### RPC This example illustrates how to do RPC over RabbitMQ. We have a RPC Client that will send request to a server that returns the number of characters in the provided strings. The server code is inside the _parallel\_processing_ folder. ### Parallel Processing This example is based on the RPC one. In this case it shows how to achieve parallel execution with PHP. Let's say that you have to execute two expensive tasks. One takes 5 seconds and the other 10. Instead of waiting 15 seconds, we can send the requests in parallel and then wait for the replies which should take 10 seconds now –the time of the slowest task–. ### Topic In this case we can see how to achieve publish/subscribe with RabbitMQ. The example is about logging. We can log with several levels and subjects and then have consumers that listen to different log levels act accordingly. ### Anonymous Consumers Also inside the _topic_ folder there's an anonymous consumer example. The idea here is for those situations when you need to hook up a queue to some exchange to "spy" what's going on, but when you quit your program you want that the queue is automatically deleted. We can achieve this using an unnamed queue. ## Change log Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently. ## Testing ``` bash $ composer test

Contributing

Please see CONTRIBUTING and CONDUCT for details., (*6)

Disclaimer

This code is experimental. The idea is to show how easy is to implement such patterns with RabbitMQ and AMQP., (*7)

Credits

License

The MIT License (MIT). Please see License File for more information., (*8)

The Versions

27/05 2016

dev-master

9999999-dev https://github.com/php-amqplib/Thumper

AMQP Tools

  Sources   Download

MIT

The Requires

 

The Development Requires

rabbitmq library amqp phpamqplib thumper

27/05 2016

v0.5.0

0.5.0.0 https://github.com/php-amqplib/Thumper

AMQP Tools

  Sources   Download

MIT

The Requires

 

The Development Requires

rabbitmq library amqp phpamqplib thumper

27/04 2016

v0.4.1

0.4.1.0 https://github.com/php-amqplib/Thumper

AMQP Tools

  Sources   Download

MIT

The Requires

 

The Development Requires

rabbitmq library amqp phpamqplib thumper

23/10 2015

v0.4.0

0.4.0.0 https://github.com/videlalvaro/Thumper

AMQP Tools

  Sources   Download

The Requires

 

rabbitmq library amqp phpamqplib thumper

29/09 2013

v0.3.2

0.3.2.0 https://github.com/videlalvaro/Thumper

AMQP Tools

  Sources   Download

The Requires

 

rabbitmq library amqp phpamqplib thumper

20/09 2013

v0.3.1

0.3.1.0 https://github.com/videlalvaro/Thumper

AMQP Tools

  Sources   Download

The Requires

 

rabbitmq library amqp phpamqplib thumper

02/09 2013

v0.3.0

0.3.0.0 https://github.com/videlalvaro/Thumper

AMQP Tools

  Sources   Download

The Requires

 

rabbitmq library amqp phpamqplib thumper