Alec Embke

Results 90 comments of Alec Embke

Yeah, you'll want to use the `let _: () = ...` or `client.get::(...)` syntax to avoid this. In case it helps, the first generic argument is always the response so...

Hi @banool, It looks like in this example you're binding the options to the pool via the `pool` variable, but then calling `replicas()` on `self.redis_pool` rather than `pool`. If you...

Nevermind, I'm able to repro this with the changes above as well. Unfortunately this will require a breaking change to support, so I'm going to table it for now until...

Added in v10.0.0 (https://github.com/aembke/fred.rs/pull/314)

Yeah, I disallowed that in order to properly handle cluster redirections in the middle of transactions. The docs state that clients should DISCARD a transaction in response to a MOVED/ASK...

After looking into this a bit more it seems Redis has supported this since 2.6.5. In [9.2.0](https://github.com/aembke/fred.rs/pull/288) there will be a new `pipeline` function on the `Transaction` struct that can...

Added in https://github.com/aembke/fred.rs/releases/tag/v9.2.0, but let me know if you have any issues with it.

All transactions are pipelined automatically now in 10.x.

Hi @CR7273868, That's an indication that the broadcast channel is receiving messages faster than they're being processed on the receiving end. You can change the buffer size of the broadcast...

Closing for now, but let me know if you still have any issues with this.