From bd8e354e1c009adf725b537835ad1e4de7b8c80c Mon Sep 17 00:00:00 2001 From: Asim Aslam Date: Wed, 19 May 2021 14:08:32 +0100 Subject: [PATCH] copy lru --- pkg/cache/cache.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/cache/cache.go b/pkg/cache/cache.go index e5e179e..2d6d68d 100644 --- a/pkg/cache/cache.go +++ b/pkg/cache/cache.go @@ -66,6 +66,7 @@ func (c *cache) Context(ctx context.Context) Cache { return c } return &cache{ + LRU: c.LRU, Store: c.Store, Prefix: t, }