Mohammad Fatemi
Mohammad Fatemi
Hi, First of all, It's a great book and is useful for someone without prior knowledge of webRTC like me. I am looking forward to furthermore content. In **Connecting** After...
Hi, I don't think this project is maintained anymore. Also, I'm not sure if this still is the best tool to test vmess servers in go. But since I wanted...
Provide tests for handler package files. Also, improve coverage of current tests
Hello again, I've come up with this draft to add a sentinel connection pool according to #338. It's currently in a draft state, meaning it might have some issues but...
Hello, Is there a plan to add the sentinel client connection pool support to the `deadpool-redis` crate? Thanks in advance
Hi, Thank you for the great tutorial. I started with Chapter 1 and had some questions that I think would be great to address in the original tutorial. 1. It's...
This will address #206 This is a backward incompatible change, and will change how the previous clients work. We can swap the logic of `WithConsumerOptionsQueueArgsOverride` with `WithConsumerOptionsQueueArgs` and Rename the...
Hello, Considering the following example for queue declaration: ```go opts = append(opts, rabbitmq.WithConsumerOptionsQueueArgs(rabbitmq.Table{ "x-delivery-limit": -1, "x-message-ttl": 6000, }), rabbitmq.WithConsumerOptionsQueueQuorum, rabbitmq.WithConsumerOptionsQueueDurable, ) ``` and ```go opts = append(opts, rabbitmq.WithConsumerOptionsQueueQuorum, rabbitmq.WithConsumerOptionsQueueArgs(rabbitmq.Table{ "x-delivery-limit":...