RabbitMQ Cookbook
eBook - ePub

RabbitMQ Cookbook

Sigismondo Boschi, Gabriele Santomaggio

  1. 288 Seiten
  2. English
  3. ePUB (handyfreundlich)
  4. Über iOS und Android verfügbar
eBook - ePub

RabbitMQ Cookbook

Sigismondo Boschi, Gabriele Santomaggio

Angaben zum Buch
Buchvorschau
Inhaltsverzeichnis
Quellenangaben

Über dieses Buch

In Detail

RabbitMQ is an open source message broker software (sometimes called message-oriented middleware) that implements the Advanced Message Queuing Protocol (AMQP). The RabbitMQ server is written in the Erlang programming language and is built on the Open Telecom Platform framework for clustering and failover. Messaging enables software applications to connect and scale. Applications can connect to each other as components of a larger application or to user devices and data.

RabbitMQ Cookbook touches on all the aspects of RabbitMQ messaging. You will learn how to use this enabling technology for the solution of highly scalable problems dictated by the dynamic requirements of Web and mobile architectures, based for example on cloud computing platforms. This is a practical guide with several examples that will help you to understand the usefulness and the power of RabbitMQ.

This book helps you learn the basic functionalities of RabbitMQ with simple examples which describe the use of RabbitMQ client APIs and how a RabbitMQ server works. You will find examples of RabbitMQ deployed in real-life use-cases, where its functionalities will be exploited combined with other technologies. This book helps you understand the advanced features of RabbitMQ that are useful for even the most demanding programmer. Over the course of the book, you will learn about the usage of basic AMQP functionalities and use RabbitMQ to let decoupled applications exchange messages as per enterprise integration applications. The same building blocks are used to implement the architecture of highly scalable applications like today's social networks, and they are presented in the book with some examples. You will also learn how to extend RabbitMQ functionalities by implementing Erlang plugins.

This book combines information with detailed examples coupled with screenshots and diagrams to help you create a messaging application with ease.

Approach

A practical book filled with advanced recipes as well as plenty of code and real-life examples which will make your learning curve quick and easy.

Who this book is for

If you are a software developer who wants to develop distributed applications based on messaging, then this book is for you. Its assumed that you have some experience with multithreading applications and distributed applications. You are also expected to know the basic concepts of Web and cloud applications in order to follow the recipes effectively.

Häufig gestellte Fragen

Wie kann ich mein Abo kündigen?
Gehe einfach zum Kontobereich in den Einstellungen und klicke auf „Abo kündigen“ – ganz einfach. Nachdem du gekündigt hast, bleibt deine Mitgliedschaft für den verbleibenden Abozeitraum, den du bereits bezahlt hast, aktiv. Mehr Informationen hier.
(Wie) Kann ich Bücher herunterladen?
Derzeit stehen all unsere auf Mobilgeräte reagierenden ePub-Bücher zum Download über die App zur Verfügung. Die meisten unserer PDFs stehen ebenfalls zum Download bereit; wir arbeiten daran, auch die übrigen PDFs zum Download anzubieten, bei denen dies aktuell noch nicht möglich ist. Weitere Informationen hier.
Welcher Unterschied besteht bei den Preisen zwischen den Aboplänen?
Mit beiden Aboplänen erhältst du vollen Zugang zur Bibliothek und allen Funktionen von Perlego. Die einzigen Unterschiede bestehen im Preis und dem Abozeitraum: Mit dem Jahresabo sparst du auf 12 Monate gerechnet im Vergleich zum Monatsabo rund 30 %.
Was ist Perlego?
Wir sind ein Online-Abodienst für Lehrbücher, bei dem du für weniger als den Preis eines einzelnen Buches pro Monat Zugang zu einer ganzen Online-Bibliothek erhältst. Mit über 1 Million Büchern zu über 1.000 verschiedenen Themen haben wir bestimmt alles, was du brauchst! Weitere Informationen hier.
Unterstützt Perlego Text-zu-Sprache?
Achte auf das Symbol zum Vorlesen in deinem nächsten Buch, um zu sehen, ob du es dir auch anhören kannst. Bei diesem Tool wird dir Text laut vorgelesen, wobei der Text beim Vorlesen auch grafisch hervorgehoben wird. Du kannst das Vorlesen jederzeit anhalten, beschleunigen und verlangsamen. Weitere Informationen hier.
Ist RabbitMQ Cookbook als Online-PDF/ePub verfügbar?
Ja, du hast Zugang zu RabbitMQ Cookbook von Sigismondo Boschi, Gabriele Santomaggio im PDF- und/oder ePub-Format sowie zu anderen beliebten Büchern aus Informatica & Informatica generale. Aus unserem Katalog stehen dir über 1 Million Bücher zur Verfügung.

Information

Jahr
2013
ISBN
9781849516501

RabbitMQ Cookbook


Table of Contents

RabbitMQ Cookbook
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Support files, eBooks, discount offers and more
Why Subscribe?
Free Access for Packt account holders
Preface
What this book covers
What you need for this book
Who this book is for
Conventions
Reader feedback
Customer support
Downloading the example code
Errata
Piracy
Questions
1. Working with AMQP
Introduction
Connecting to the broker
Getting ready
How to do it…
How it works…
There's more…
Producing messages
Getting ready
How to do it…
How it works…
There's more…
How to check the RabbitMQ status
Checking whether a queue already exists
Consuming messages
Getting ready
How to do it…
How it works…
There's more…
More on consumer threads
Blocking semantics
See also
Using body serialization with JSON
Getting ready
How to do it…
How it works…
There's more…
Using RPC with messaging
Getting ready
How to do it…
How it works…
There's more…
Using blocking RPC
Scalability notes
Broadcasting messages
Getting ready
How to do it…
How it works…
There's more…
See also
Working with message routing using direct exchanges
Getting ready
How to do it…
How it works…
There's more…
Working with message routing using topic exchanges
Getting ready
How to do it…
How it works…
There's more…
Guaranteeing message processing
Getting ready
How to do it…
How it works…
There's more…
See also
Distributing messages to many consumers
Getting ready
How to do it…
How it works...
See also…
Using message properties
Getting ready
How to do it…
How it works…
There's more…
See also
Messaging with transactions
Getting ready
How to do it…
How it works…
There's more…
See also
Handling unroutable messages
Getting ready
How to do it…
How it works…
There's more…
2. Going beyond the AMQP Standard
Introduction
How to let messages expire
Getting ready
How to do it...
How it works...
See also
How to let messages expire on specific queues
Getting ready
How to do it...
How it works...
There's more...
See also
How to let queues expire
Getting ready
How to do it...
How it works...
Managing rejected or expired messages
Getting ready
How to do it...
How it works...
There's more...
Understanding the alternate exchange extension
Getting ready
How to do it...
How it works...
There's more...
Understanding the validated user-ID extension
Getting ready
How to do it...
How it works...
See also
Notifying the consumers of queue failures
Getting ready
How to do it...
How it works...
There's more...
See also
Understanding the exchange-to-exchange extension
Getting ready
How to do it...
How it works...
Embedding message destinations within messages
Getting ready
How to do it....
How it works...
There's more...
3. Managing RabbitMQ
Introduction
Using vhosts
Getting ready
How to do it…
How it works…
Configuring users
Getting ready
How to do it…
How it works…
There's more…
User tags for the management plugin
Using SSL
Getting ready
How to do it…
How it works…
There's more…
Implementing client-side certificates
Getting ready
How to do it…
How it works…
Managing RabbitMQ from a browser
Getting ready
How to do it…
How it works…
There's more…
See also
Configuring RabbitMQ parameters
How to do it…
How it works…
There's more…
Developing Python applications to monitor RabbitMQ
Getting ready
How to do it…
How it works…
There's more…
See also
Developing your own web applications to monitor RabbitMQ
Getting ready
How to do it…
How it works…
There's more…
See also
4. Mixing Different Technologies
Introduction
Using a .NET client
Getting ready
How to do it…
How it works…
There's more…
See also
Binding an app from iPhone to RabbitMQ via MQTT
Getting ready
How to do it…
How it works…
There's more…
See also
Using messaging to update Google Maps on Android
Getting ready
How to do it…
How it works…
There's more…
Publishing messages from Android in the background
Getting ready…
How to do it…
How it works…
There's more…
Exchanging RabbitMQ messages with Qpid
Getting ready
How to do it…
How it works…
There's more…
Exchanging RabbitMQ messages with Mosquitto
Getting ready
How to do it…
How it works…
There's more…
See also
Binding a WCF application with .Net clients
Getting ready
How to do it…
How it works…
There's more…
See also
5. Using RabbitMQ in Web Applications
Introduction
Developing web monitoring applications with Spring
Getting ready
How to do it…
How it works…
There's more…
Developing asynchronous web searches with Spring
Getting ready
How to d...

Inhaltsverzeichnis

Zitierstile für RabbitMQ Cookbook

APA 6 Citation

Boschi, S., & Santomaggio, G. (2013). RabbitMQ Cookbook (1st ed.). Packt Publishing. Retrieved from https://www.perlego.com/book/390720/rabbitmq-cookbook-pdf (Original work published 2013)

Chicago Citation

Boschi, Sigismondo, and Gabriele Santomaggio. (2013) 2013. RabbitMQ Cookbook. 1st ed. Packt Publishing. https://www.perlego.com/book/390720/rabbitmq-cookbook-pdf.

Harvard Citation

Boschi, S. and Santomaggio, G. (2013) RabbitMQ Cookbook. 1st edn. Packt Publishing. Available at: https://www.perlego.com/book/390720/rabbitmq-cookbook-pdf (Accessed: 14 October 2022).

MLA 7 Citation

Boschi, Sigismondo, and Gabriele Santomaggio. RabbitMQ Cookbook. 1st ed. Packt Publishing, 2013. Web. 14 Oct. 2022.