A sharded memcache client implementation where sharding management is handled by the provided ShardManager.
| 10 | // A sharded memcache client implementation where sharding management is |
| 11 | // handled by the provided ShardManager. |
| 12 | type ShardedClient struct { |
| 13 | manager ShardManager |
| 14 | builder ClientShardBuilder |
| 15 | } |
| 16 | |
| 17 | var ( |
| 18 | // Counters for number of get requests that successed / errored, by address. |
nothing calls this directly
no outgoing calls
no test coverage detected