ex-tackle icon indicating copy to clipboard operation
ex-tackle copied to clipboard

💯 percent reliable microservice communication

Results 4 ex-tackle issues
Sort by recently updated
recently updated
newest added

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

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