======================================================================== Ristretto ========================================================================
| 259 | //======================================================================== |
| 260 | |
| 261 | type RistrettoCache struct { |
| 262 | c *ristretto.Cache |
| 263 | } |
| 264 | |
| 265 | func (r *RistrettoCache) Get(key []byte) ([]byte, error) { |
| 266 | v, ok := r.c.Get(key) |
nothing calls this directly
no outgoing calls
no test coverage detected