Ben Ashford

Results 32 comments of Ben Ashford

Hello. This is an interesting question. The nature of a subscription means we're waiting for other things to happen. One thing that might be useful is that, if the connection...

Yes, this looks to be the case. I do have experimental support for `async-std` in a branch, but this isn't ready yet. The current default is Tokio 1.x, but there...

Hello, unfortunately I'm not familiar with Actix Web, but @nazar-pc 's comment above is correct in the sense this error means that a Tokio runtime isn't running which is required...

This issue can only happen if, for some reason, Redis sends back more items of data than the client requests. This can happen if certain commands, like `MONITOR` or `SUBSCRIBE`...

Yes, that does sound like it could be a bug. Has it only happened the once, or is it repeatable? And if it's repeatable is it possible to extract a...

Hello, Yes, PubSub connections will reconnect, but any subscription streams you have will error and you'll need to resubscribe. The reason for this is trying to mirror the low-level Redis...

The current stream returned by future returned from `subscribe` on the `PubSubConnection` should end in one of two ways, either: - it is dropped by the application when its no-longer...

The most recent `0.5.0` release moves this issue along, but doesn't fully resolve it. The pattern that a client app should always re-subscribe to a topic if it unexpectedly ends...

Hello, When I started this library mitsuhiko/redis-rs didn't have async support, that's a more recent addition. But because of those different histories the two libraries have quite different APIs. For...

Hello, thanks for raising this. In principle we should probably do both. The building blocks should be flexible, but Sentinel is something that should be supported directly too. It depends...