rabbitmq-website
rabbitmq-website copied to clipboard
RabbitMQ website
Several peer discovery plugins use HTTP to communicate with their services and there is currently no clear explanation in the docs as to how to configure client TLS options (certificate,...
https://groups.google.com/d/msg/rabbitmq-c-users/T14SxGbAxxw/OdyTzFlnBAAJ ---- Hi Alan, Yes, since the consumers and publishers share the TCP socket. https://www.cloudamqp.com/blog/2017-12-29-part1-rabbitmq-best-practice.html#separate-connections-for-publisher-and-consumer https://www.cloudamqp.com/blog/2018-01-19-part4-rabbitmq-13-common-errors.html https://www.rabbitmq.com/connections.html#flow-control To be honest this best practice isn't called out like it should be...
Reported via [this discussion](https://rabbitmq.slack.com/archives/C1EDN83PA/p1575023633148100) in the public RabbitMQ slack: > Hello, I am writing PHP client for RabbitMQ. Implementing Connection class AMQP methods I found four AMQP methods which is...
Hi guys, Ive created a repo translating the code from callbacks to es6 and async await [here](https://github.com/cocodrino/rabbitmq-tutorials-async-await) I also change the buffer code according to the deprecation warning ```bash DeprecationWarning:...
The c# sample of the tutorial is far from representing best practice. Modern C# expected to use async/await rather than blocking API. I suggest the following RPC sample correction: https://github.com/bnayae/RabbitMQ-Playground/blob/master/RPC/RpcRabbitClient/AsyncRpcClient.cs...
The SSL documentation https://www.rabbitmq.com/ssl.html could be extended to explain how CRL must be configured, as it seems confusing for non-Erlang users. See question on serverfault: http://serverfault.com/questions/752233/rabbitmq-crl-configuration/769738#comment970056_769738 Thanks @legoscia!
As discussed on Slack, most, if not all, standard glossary like references follow some form of ordering, usually alphabetical. This is something to consider for the future as config parameters...
From https://github.com/rabbitmq/rabbitmq-server/issues/1015: ``` When creating a federation upstream, in the uri if connection_timeout amqp param is added it needs to be in milliseconds not seconds according to the documentation. This...