(query string)
| 23 | } |
| 24 | |
| 25 | func (c *Cache) Get(query string) uint { |
| 26 | i, _ := c.items.Load(query) |
| 27 | return i.(uint) |
| 28 | } |
| 29 | |
| 30 | // Invalidate is only needed when a member leaves and the search query reaches |
| 31 | // the search limit. |
no outgoing calls
no test coverage detected