SlideShare a Scribd company logo
What RabbitMQ Can Do For You
James Titcumb
Nomad PHP Lightning Talk
May 2014
Who is this guy?
James Titcumb
www.jamestitcumb.com
www.protected.co.uk
www.phphants.co.uk
@asgrim
What is message queuing?
Separate applications
Low cost parallelisation
Basic Example
Publisher
queue
Consumer
Based on: http://www.rabbitmq.com/tutorials/tutorial-one-php.html
Exchanges
Based on: http://www.rabbitmq.com/tutorials/tutorial-three-php.html
queue1
Publisher
Publisher
Publisher
Publisher
Exchange
queue2
Consumer
Consumer
Consumer
Exchanges: Direct
Based on: http://www.rabbitmq.com/tutorials/tutorial-four-php.html
fruit
Exchange
vegetable
Fruit consumer
Veg consumer
Fruit consumer
Publisher
routing key: fruit
routing key: vegetable
Exchanges: Topic
Based on: http://www.rabbitmq.com/tutorials/tutorial-five-php.html
*.fruit
Exchange
green.*
Fruit consumer
Green consumer
Veg consumer
Publisher
routing key: green.fruit
routing key: green.vegetable
*.vegetable
Real World Uses
● Fast logging solution
● Sending emails
● Sending SMS
● Background processing (e.g. analysing data)
Using in PHP?
https://github.com/videlalvaro/php-amqplib
composer.json
{
"require": {
"videlalvaro/php-amqplib": "2.*"
}
}
Set up the channel
use PhpAmqpLibConnectionAMQPConnection;
$connection = new AMQPConnection(
'localhost', 5672, 'guest', 'guest', '/');
$channel = $connection->channel();
$channel->queue_declare('my_queue', /* params... */);
$channel->exchange_declare(
'my_exchange', 'fanout', /* params... */);
$channel->queue_bind('my_queue', 'my_exchange');
Basic Publishing Example
use PhpAmqpLibMessageAMQPMessage;
$content = 'Hello world';
$message = new AMQPMessage($content);
$channel->basic_publish($message);
Basic Consumer Example
use PhpAmqpLibMessageAMQPMessage;
$channel->basic_consume(
'my_queue',
/* some more parameters */
function (AMQPMessage $message) {
echo $message->body;
}
);
Questions?
Thank you!
James Titcumb
www.jamestitcumb.com
www.protected.co.uk
www.phphants.co.uk
@asgrim
Please feedback!
https://joind.in/11350

More Related Content

PDF
PDF
RabbitMQ - ΠΎΠ±ΠΌΠ΅Π½ сообщСниями, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ просто Ρ€Π°Π±ΠΎΡ‚Π°Π΅Ρ‚
PPTX
RabbitMQ - ΠΎΠ±ΠΌΠ΅Π½ сообщСниями, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ просто Ρ€Π°Π±ΠΎΡ‚Π°Π΅Ρ‚
PDF
PHP, RabbitMQ, and You
PDF
Asynchronous processing with PHP and Symfony2. Do it simple
PDF
Reducing load with RabbitMQ
PDF
Scaling Symfony2 apps with RabbitMQ - Symfony UK Meetup
PDF
Theres a rabbit on my symfony
RabbitMQ - ΠΎΠ±ΠΌΠ΅Π½ сообщСниями, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ просто Ρ€Π°Π±ΠΎΡ‚Π°Π΅Ρ‚
RabbitMQ - ΠΎΠ±ΠΌΠ΅Π½ сообщСниями, ΠΊΠΎΡ‚ΠΎΡ€Ρ‹ΠΉ просто Ρ€Π°Π±ΠΎΡ‚Π°Π΅Ρ‚
PHP, RabbitMQ, and You
Asynchronous processing with PHP and Symfony2. Do it simple
Reducing load with RabbitMQ
Scaling Symfony2 apps with RabbitMQ - Symfony UK Meetup
Theres a rabbit on my symfony

Similar to What RabbitMQ Can Do For You (Nomad PHP May 2014) (12)

PDF
Practical Message Queueing using RabbitMQ (Nomad PHP EU Dec 2014)
PDF
Discussion starter at Future of Privacy Forum in Washington, DC.
KEY
Php through the eyes of a hoster: PHPNW10
PDF
Website Monitoring with Distributed Messages/Tasks Processing (AMQP & RabbitM...
PDF
Nim in Action 1st Edition Dominik Picheta
PDF
2013 - Dustin whittle - Escalando PHP en la vida real
PDF
Easily reduce runtimes with cython
PDF
meet.php #11 - Huston, we have an airbrake
PDF
IBM Blockchain Platform Technical Introduction v1.1
PPT
Magento eCommerce And The Next Generation Of PHP
Β 
PDF
PHP Ecosystem and Best Practices
PDF
What is Nginx and Why You Should to Use it with Wordpress Hosting
Practical Message Queueing using RabbitMQ (Nomad PHP EU Dec 2014)
Discussion starter at Future of Privacy Forum in Washington, DC.
Php through the eyes of a hoster: PHPNW10
Website Monitoring with Distributed Messages/Tasks Processing (AMQP & RabbitM...
Nim in Action 1st Edition Dominik Picheta
2013 - Dustin whittle - Escalando PHP en la vida real
Easily reduce runtimes with cython
meet.php #11 - Huston, we have an airbrake
IBM Blockchain Platform Technical Introduction v1.1
Magento eCommerce And The Next Generation Of PHP
Β 
PHP Ecosystem and Best Practices
What is Nginx and Why You Should to Use it with Wordpress Hosting
Ad

More from James Titcumb (20)

PDF
Living the Best Life on a Legacy Project (phpday 2022).pdf
PDF
Tips for Tackling a Legacy Codebase (ScotlandPHP 2021)
PDF
Climbing the Abstract Syntax Tree (Midwest PHP 2020)
PDF
Best practices for crafting high quality PHP apps (Bulgaria 2019)
PDF
Climbing the Abstract Syntax Tree (php[world] 2019)
PDF
Best practices for crafting high quality PHP apps (php[world] 2019)
PDF
Crafting Quality PHP Applications (PHP Joburg Oct 2019)
PDF
Climbing the Abstract Syntax Tree (PHP Russia 2019)
PDF
Best practices for crafting high quality PHP apps - PHP UK 2019
PDF
Climbing the Abstract Syntax Tree (ScotlandPHP 2018)
PDF
Best practices for crafting high quality PHP apps (ScotlandPHP 2018)
PDF
Kicking off with Zend Expressive and Doctrine ORM (PHP South Africa 2018)
PDF
Best practices for crafting high quality PHP apps (PHP South Africa 2018)
PDF
Climbing the Abstract Syntax Tree (PHP Developer Days Dresden 2018)
PDF
Climbing the Abstract Syntax Tree (Southeast PHP 2018)
PDF
Crafting Quality PHP Applications (PHPkonf 2018)
PDF
Best practices for crafting high quality PHP apps (PHP Yorkshire 2018)
PDF
Crafting Quality PHP Applications: an overview (PHPSW March 2018)
PDF
Kicking off with Zend Expressive and Doctrine ORM (PHP MiNDS March 2018)
PDF
Climbing the Abstract Syntax Tree (PHP UK 2018)
Living the Best Life on a Legacy Project (phpday 2022).pdf
Tips for Tackling a Legacy Codebase (ScotlandPHP 2021)
Climbing the Abstract Syntax Tree (Midwest PHP 2020)
Best practices for crafting high quality PHP apps (Bulgaria 2019)
Climbing the Abstract Syntax Tree (php[world] 2019)
Best practices for crafting high quality PHP apps (php[world] 2019)
Crafting Quality PHP Applications (PHP Joburg Oct 2019)
Climbing the Abstract Syntax Tree (PHP Russia 2019)
Best practices for crafting high quality PHP apps - PHP UK 2019
Climbing the Abstract Syntax Tree (ScotlandPHP 2018)
Best practices for crafting high quality PHP apps (ScotlandPHP 2018)
Kicking off with Zend Expressive and Doctrine ORM (PHP South Africa 2018)
Best practices for crafting high quality PHP apps (PHP South Africa 2018)
Climbing the Abstract Syntax Tree (PHP Developer Days Dresden 2018)
Climbing the Abstract Syntax Tree (Southeast PHP 2018)
Crafting Quality PHP Applications (PHPkonf 2018)
Best practices for crafting high quality PHP apps (PHP Yorkshire 2018)
Crafting Quality PHP Applications: an overview (PHPSW March 2018)
Kicking off with Zend Expressive and Doctrine ORM (PHP MiNDS March 2018)
Climbing the Abstract Syntax Tree (PHP UK 2018)
Ad

Recently uploaded (20)

PDF
Cloud-Scale Log Monitoring _ Datadog.pdf
PDF
Testing WebRTC applications at scale.pdf
PDF
Slides PDF The World Game (s) Eco Economic Epochs.pdf
PPT
Design_with_Watersergyerge45hrbgre4top (1).ppt
PPTX
Introuction about ICD -10 and ICD-11 PPT.pptx
DOCX
Unit-3 cyber security network security of internet system
PPTX
522797556-Unit-2-Temperature-measurement-1-1.pptx
PDF
πŸ’° π”πŠπ“πˆ πŠπ„πŒπ„ππ€ππ†π€π πŠπˆππ„π‘πŸ’πƒ π‡π€π‘πˆ 𝐈𝐍𝐈 πŸπŸŽπŸπŸ“ πŸ’°
Β 
PDF
The New Creative Director: How AI Tools for Social Media Content Creation Are...
PPTX
international classification of diseases ICD-10 review PPT.pptx
PPTX
Slides PPTX World Game (s) Eco Economic Epochs.pptx
PPTX
INTERNET------BASICS-------UPDATED PPT PRESENTATION
PPTX
introduction about ICD -10 & ICD-11 ppt.pptx
PPTX
June-4-Sermon-Powerpoint.pptx USE THIS FOR YOUR MOTIVATION
PPTX
Internet___Basics___Styled_ presentation
PDF
Unit-1 introduction to cyber security discuss about how to secure a system
PPTX
artificial intelligence overview of it and more
PDF
An introduction to the IFRS (ISSB) Stndards.pdf
PPTX
Job_Card_System_Styled_lorem_ipsum_.pptx
PDF
Decoding a Decade: 10 Years of Applied CTI Discipline
Cloud-Scale Log Monitoring _ Datadog.pdf
Testing WebRTC applications at scale.pdf
Slides PDF The World Game (s) Eco Economic Epochs.pdf
Design_with_Watersergyerge45hrbgre4top (1).ppt
Introuction about ICD -10 and ICD-11 PPT.pptx
Unit-3 cyber security network security of internet system
522797556-Unit-2-Temperature-measurement-1-1.pptx
πŸ’° π”πŠπ“πˆ πŠπ„πŒπ„ππ€ππ†π€π πŠπˆππ„π‘πŸ’πƒ π‡π€π‘πˆ 𝐈𝐍𝐈 πŸπŸŽπŸπŸ“ πŸ’°
Β 
The New Creative Director: How AI Tools for Social Media Content Creation Are...
international classification of diseases ICD-10 review PPT.pptx
Slides PPTX World Game (s) Eco Economic Epochs.pptx
INTERNET------BASICS-------UPDATED PPT PRESENTATION
introduction about ICD -10 & ICD-11 ppt.pptx
June-4-Sermon-Powerpoint.pptx USE THIS FOR YOUR MOTIVATION
Internet___Basics___Styled_ presentation
Unit-1 introduction to cyber security discuss about how to secure a system
artificial intelligence overview of it and more
An introduction to the IFRS (ISSB) Stndards.pdf
Job_Card_System_Styled_lorem_ipsum_.pptx
Decoding a Decade: 10 Years of Applied CTI Discipline

What RabbitMQ Can Do For You (Nomad PHP May 2014)