FunctionCacher queries functions and caches the results
| 12 | |
| 13 | // FunctionCacher queries functions and caches the results |
| 14 | type FunctionCacher interface { |
| 15 | Set(functionName, namespace string, serviceQueryResponse ServiceQueryResponse) |
| 16 | Get(functionName, namespace string) (ServiceQueryResponse, bool) |
| 17 | } |
| 18 | |
| 19 | // FunctionCache provides a cache of Function replica counts |
| 20 | type FunctionCache struct { |
no outgoing calls
no test coverage detected
searching dependent graphs…