RabbitMQ Cookbook
eBook - ePub

RabbitMQ Cookbook

Sigismondo Boschi, Gabriele Santomaggio

  1. 288 pagine
  2. English
  3. ePUB (disponibile sull'app)
  4. Disponibile su iOS e Android
eBook - ePub

RabbitMQ Cookbook

Sigismondo Boschi, Gabriele Santomaggio

Dettagli del libro
Anteprima del libro
Indice dei contenuti
Citazioni

Informazioni sul libro

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.

Domande frequenti

Come faccio ad annullare l'abbonamento?
È semplicissimo: basta accedere alla sezione Account nelle Impostazioni e cliccare su "Annulla abbonamento". Dopo la cancellazione, l'abbonamento rimarrà attivo per il periodo rimanente già pagato. Per maggiori informazioni, clicca qui
È possibile scaricare libri? Se sì, come?
Al momento è possibile scaricare tramite l'app tutti i nostri libri ePub mobile-friendly. Anche la maggior parte dei nostri PDF è scaricabile e stiamo lavorando per rendere disponibile quanto prima il download di tutti gli altri file. Per maggiori informazioni, clicca qui
Che differenza c'è tra i piani?
Entrambi i piani ti danno accesso illimitato alla libreria e a tutte le funzionalità di Perlego. Le uniche differenze sono il prezzo e il periodo di abbonamento: con il piano annuale risparmierai circa il 30% rispetto a 12 rate con quello mensile.
Cos'è Perlego?
Perlego è un servizio di abbonamento a testi accademici, che ti permette di accedere a un'intera libreria online a un prezzo inferiore rispetto a quello che pagheresti per acquistare un singolo libro al mese. Con oltre 1 milione di testi suddivisi in più di 1.000 categorie, troverai sicuramente ciò che fa per te! Per maggiori informazioni, clicca qui.
Perlego supporta la sintesi vocale?
Cerca l'icona Sintesi vocale nel prossimo libro che leggerai per verificare se è possibile riprodurre l'audio. Questo strumento permette di leggere il testo a voce alta, evidenziandolo man mano che la lettura procede. Puoi aumentare o diminuire la velocità della sintesi vocale, oppure sospendere la riproduzione. Per maggiori informazioni, clicca qui.
RabbitMQ Cookbook è disponibile online in formato PDF/ePub?
Sì, puoi accedere a RabbitMQ Cookbook di Sigismondo Boschi, Gabriele Santomaggio in formato PDF e/o ePub, così come ad altri libri molto apprezzati nelle sezioni relative a Informatica e Informatica generale. Scopri oltre 1 milione di libri disponibili nel nostro catalogo.

Informazioni

Anno
2013
ISBN
9781849516501
Edizione
1
Argomento
Informatica

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...

Indice dei contenuti

Stili delle citazioni per 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.