(key string, value []byte, ttl time.Duration)
| 30 | } |
| 31 | |
| 32 | func (c *Versioned) SetAsync(key string, value []byte, ttl time.Duration) { |
| 33 | c.cache.SetAsync(c.addVersion(key), value, ttl) |
| 34 | } |
| 35 | |
| 36 | func (c *Versioned) SetMultiAsync(data map[string][]byte, ttl time.Duration) { |
| 37 | versioned := make(map[string][]byte, len(data)) |
nothing calls this directly
no test coverage detected