(key string, value []byte, ttl time.Duration)
| 26 | } |
| 27 | |
| 28 | func (c *Cache) StoreBytes(key string, value []byte, ttl time.Duration) error { |
| 29 | return c.store.Set(c.computeHashKey(key), value, ttl) |
| 30 | } |
| 31 | |
| 32 | func (c *Cache) GetBytes(key string) ([]byte, error) { |
| 33 | return c.store.GetBytes(c.computeHashKey(key)) |
nothing calls this directly
no test coverage detected