ex-tackle
ex-tackle copied to clipboard
💯 percent reliable microservice communication
This pull request introduces enhancements to the `Tackle.publish` by implementing the ability to reuse a RabbitMQ connection via `Tackle.Connection.open(name, ..)`. This change aims to improve performance and resource management by...
[wip] needs tests
Is there a reason to use direct exchanges instead of topic exchanges? We often setup debug queues for all our "external exchanges" via `#` as routing key and a `x-max-length`...
The current best solution is: ``` elixir def handle_message(message) try do :a + 1 rescue e -> # do soemthing raise e end end ``` @snehaso suggested that we could...