------------------------------------------------------------------------------ Client is a Redis client representing a pool of zero or more underlying connections. It's safe for concurrent use by multiple goroutines. Client creates and frees connections automatically; it also maintains a free pool
| 1339 | // Client creates and frees connections automatically; it also maintains a free pool |
| 1340 | // of idle connections. You can control the pool size with Config.PoolSize option. |
| 1341 | type Client struct { |
| 1342 | *baseClient |
| 1343 | cmdable |
| 1344 | } |
| 1345 | |
| 1346 | // NewClient returns a client to the Redis Server specified by Options. |
| 1347 | // Passing nil Options will cause a panic. |
nothing calls this directly
no outgoing calls
no test coverage detected