(ctx context.Context, key string, val interface{}, expiration time.Duration)
| 26 | // Cache driver interface |
| 27 | type Cache interface { |
| 28 | Set(ctx context.Context, key string, val interface{}, expiration time.Duration) error |
| 29 | Get(ctx context.Context, key string, val interface{}) error |
| 30 | MultiSet(ctx context.Context, valMap map[string]interface{}, expiration time.Duration) error |
| 31 | MultiGet(ctx context.Context, keys []string, valueMap interface{}) error |
no outgoing calls