radix icon indicating copy to clipboard operation
radix copied to clipboard

Redis client for Go

Results 8 radix issues
Sort by recently updated
recently updated
newest added

Hi, we have a use case where we're Redis to issue regular commands for rate limiting and listening to a channel for expired key events. Currently, we are creating 2...

We had an issue recently where one of the replica nodes in our Redis cluster became unresponsive. Radix seemed to do a pretty good job at detecting that the connections...

Test demonstrating #330 and a proposed solution to it consistent with (and copied/borrowed from) Go's own `encoding/json` package: 1. By default, an empty slice in a struct will flatten to...

A struct of the form: ```go struct { Other string Nested []string } ``` with with `Nested` left to it's empty value, generates an invalid number of arguments for `HMSET`,...

The current pattern that the internal `proc` package uses is restrictive in a few ways. It would be better to use a pattern more like github.com/oklog/run, which has all go-routines...

Currently users must manually handle push responses from Redis which is not only tedious, but also impractical since push responses can come before any other response so handling them correctly...

## How does radix's pool work I checked the source codes, it works as below * The pool will create all connections initial with pool.size number: https://github.com/mediocregopher/radix/blob/v3/pool.go#L359 * When use...

I am aware that a Client actively tries to reconnect to a server that became unreachable. However, the Client will not try to connect to a server that was reachable...