RabbitMQ Cookbook
eBook - ePub

RabbitMQ Cookbook

Sigismondo Boschi, Gabriele Santomaggio

  1. 288 páginas
  2. English
  3. ePUB (apto para móviles)
  4. Disponible en iOS y Android
eBook - ePub

RabbitMQ Cookbook

Sigismondo Boschi, Gabriele Santomaggio

Detalles del libro
Vista previa del libro
Índice
Citas

Información del 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.

Preguntas frecuentes

¿Cómo cancelo mi suscripción?
Simplemente, dirígete a la sección ajustes de la cuenta y haz clic en «Cancelar suscripción». Así de sencillo. Después de cancelar tu suscripción, esta permanecerá activa el tiempo restante que hayas pagado. Obtén más información aquí.
¿Cómo descargo los libros?
Por el momento, todos nuestros libros ePub adaptables a dispositivos móviles se pueden descargar a través de la aplicación. La mayor parte de nuestros PDF también se puede descargar y ya estamos trabajando para que el resto también sea descargable. Obtén más información aquí.
¿En qué se diferencian los planes de precios?
Ambos planes te permiten acceder por completo a la biblioteca y a todas las funciones de Perlego. Las únicas diferencias son el precio y el período de suscripción: con el plan anual ahorrarás en torno a un 30 % en comparación con 12 meses de un plan mensual.
¿Qué es Perlego?
Somos un servicio de suscripción de libros de texto en línea que te permite acceder a toda una biblioteca en línea por menos de lo que cuesta un libro al mes. Con más de un millón de libros sobre más de 1000 categorías, ¡tenemos todo lo que necesitas! Obtén más información aquí.
¿Perlego ofrece la función de texto a voz?
Busca el símbolo de lectura en voz alta en tu próximo libro para ver si puedes escucharlo. La herramienta de lectura en voz alta lee el texto en voz alta por ti, resaltando el texto a medida que se lee. Puedes pausarla, acelerarla y ralentizarla. Obtén más información aquí.
¿Es RabbitMQ Cookbook un PDF/ePUB en línea?
Sí, puedes acceder a RabbitMQ Cookbook de Sigismondo Boschi, Gabriele Santomaggio en formato PDF o ePUB, así como a otros libros populares de Informatica y Informatica generale. Tenemos más de un millón de libros disponibles en nuestro catálogo para que explores.

Información

Año
2013
ISBN
9781849516501
Edición
1
Categoría
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...

Índice

Estilos de citas para 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.