getFull fetches the contents of a full blob. Returns false if not found.
(ctx context.Context, key string, output *gather.WriteBuffer)
| 92 | |
| 93 | // getFull fetches the contents of a full blob. Returns false if not found. |
| 94 | func (c *PersistentCache) getFull(ctx context.Context, key string, output *gather.WriteBuffer) bool { |
| 95 | return c.getPartial(ctx, key, 0, -1, output) |
| 96 | } |
| 97 | |
| 98 | func (c *PersistentCache) getPartialCacheHit(ctx context.Context, key string, length int64, output *gather.WriteBuffer) { |
| 99 | // cache hit |