Steve Lorello

Results 208 comments of Steve Lorello

I'd be happy to do a bloom filter

Break worth making on a transition to 3.x, the current fail-silently behavior is difficult to debug. In the interim, could add a status flag onto the end of the response?...

Corresponding RedisJSON PR RedisJSON/RedisJSON#767

@wj8400684 - XREAD groups is implemented by `StreamReadGroup`/`StreamReadGroupAsync`, however, the blocking aspect of this command is not possible at the moment given the architectural constraints of this library. I wrote...

@hyperion-cs what is the output from your redis-server when you run: ``` redis-cli --bigkeys ``` and ``` redis-cli --memkeys ```

@icespedesc - what you're seeing is an issue in RediSearch that has been resolved. See my write up in redisearch/redisearch#2803

Ahh, interesting, well if the Lua script is performing writes, it is illegal to execute it on a replica. To Remove this error you should be able to use the...

@NickCraver, I don't believe there's any pub/sub event that gets triggered when a quorum of the cluster elects to fail-over. The nodes of course all [talk to each other](https://redis.io/docs/reference/cluster-spec/#failure-detection) when...

@NickCraver: redis/redis#10358 seems there's a PR in flight. Would be a nice feature for sure.

That said, isn't the client already reacting to `-MOVED` redirects? I think I've seen something about that. Maybe the failed-over node isn't sending the redirects?