SetWithContext stores the given value for the given key with an expiration value, 0 means no expiration. Empty key or value will be ignored without an error.
(ctx context.Context, key string, val []byte, exp time.Duration)
| 20 | // with an expiration value, 0 means no expiration. |
| 21 | // Empty key or value will be ignored without an error. |
| 22 | SetWithContext(ctx context.Context, key string, val []byte, exp time.Duration) error |
| 23 | |
| 24 | // Set stores the given value for the given key along |
| 25 | // with an expiration value, 0 means no expiration. |
no outgoing calls