Pool maintains a pool of Redis connections.
| 7 | |
| 8 | // Pool maintains a pool of Redis connections. |
| 9 | type Pool interface { |
| 10 | Get(ctx context.Context) (Conn, error) |
| 11 | } |
| 12 | |
| 13 | // Conn is a single Redis connection. |
| 14 | type Conn interface { |
no outgoing calls
no test coverage detected
searching dependent graphs…