Get retrieves a cached response Returns (data, isStale, found)
(ctx context.Context, key string)
| 13 | // Get retrieves a cached response |
| 14 | // Returns (data, isStale, found) |
| 15 | Get(ctx context.Context, key string) ([]byte, bool, bool) |
| 16 | |
| 17 | // Set stores a response with dependency refs for invalidation. |
| 18 | Set(ctx context.Context, key string, data []byte, refs []core.RowRef, queryStartTime time.Time) error |
no outgoing calls