From 919206e77d18ef0a709b40041f4b4b4ea09b69cd Mon Sep 17 00:00:00 2001 From: Joe Block Date: Mon, 1 Oct 2018 21:24:09 -0600 Subject: [PATCH 1/2] Minor cleanups in README.markdown * Add missing word * Make blank line usage consistent around header lines --- README.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.markdown b/README.markdown index 0cd7dc4..193c092 100644 --- a/README.markdown +++ b/README.markdown @@ -6,11 +6,10 @@ A synchronous amqp client. Based on Aman's amqp client: ## Motivation -This client does not use eventmachine so no background thread necessary. As a result, it is much easier to use from script/console and Passenger. It also solves the problem of buffering messages and ack responses. For more details see [this thread](http://groups.google.com/group/ruby-amqp/browse_thread/thread/fdae324a0ebb1961/fa185fdce1841b68). +This client does not use eventmachine so no background thread is necessary. As a result, it is much easier to use from script/console and Passenger. It also solves the problem of buffering messages and ack responses. For more details see [this thread](http://groups.google.com/group/ruby-amqp/browse_thread/thread/fdae324a0ebb1961/fa185fdce1841b68). There is currently no way to prevent buffering using eventmachine. Support for prefetch is still unreliable. - ## Examples require 'carrot' @@ -29,6 +28,7 @@ There is currently no way to prevent buffering using eventmachine. Support for p end Carrot.stop + ### Using options with server and queue require 'carrot' From 96d19661128f27ba43202a62be907e624b9f40a9 Mon Sep 17 00:00:00 2001 From: Joe Block Date: Mon, 1 Oct 2018 21:25:46 -0600 Subject: [PATCH 2/2] Make Passenger mention a clickable link Make it easier for readers to find the Passenger documentation --- README.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.markdown b/README.markdown index 193c092..6660bce 100644 --- a/README.markdown +++ b/README.markdown @@ -6,7 +6,7 @@ A synchronous amqp client. Based on Aman's amqp client: ## Motivation -This client does not use eventmachine so no background thread is necessary. As a result, it is much easier to use from script/console and Passenger. It also solves the problem of buffering messages and ack responses. For more details see [this thread](http://groups.google.com/group/ruby-amqp/browse_thread/thread/fdae324a0ebb1961/fa185fdce1841b68). +This client does not use eventmachine so no background thread is necessary. As a result, it is much easier to use from script/console and [Passenger](https://www.phusionpassenger.com/). It also solves the problem of buffering messages and ack responses. For more details see [this thread](http://groups.google.com/group/ruby-amqp/browse_thread/thread/fdae324a0ebb1961/fa185fdce1841b68). There is currently no way to prevent buffering using eventmachine. Support for prefetch is still unreliable.