(key string, index int)
| 60 | } |
| 61 | |
| 62 | func (c *clientCacheImpl) Lookup(key string, index int) (string, error) { |
| 63 | return c.keyResolver.Lookup(key, index) |
| 64 | } |
| 65 | |
| 66 | func (c *clientCacheImpl) GetClientForKey(key string, index int) (any, error) { |
| 67 | clientKey, err := c.Lookup(key, index) |