type LRU struct {
// contains filtered or unexported fields
}
func New(size int) *LRU
func (l LRU) Add(ctx context.Context, key string, value interface{})
func (l LRU) Get(ctx context.Context, key string) (value interface{}, ok bool)