List binds item to "dest" based on the "rawQuery" of `url.Values` for `ListOptions`.
(ctx context.Context, rawQuery string, dest *[]byte)
| 116 | |
| 117 | // List binds item to "dest" based on the "rawQuery" of `url.Values` for `ListOptions`. |
| 118 | func (c *Cache) List(ctx context.Context, rawQuery string, dest *[]byte) error { |
| 119 | return c.group.Get(ctx, prefixList+rawQuery, groupcache.AllocatingByteSliceSink(dest)) |
| 120 | } |