From 967ee73681028805527cfbecca6a4d843caa0da1 Mon Sep 17 00:00:00 2001 From: Dmitry Verkhoturov Date: Tue, 5 May 2020 19:46:14 +0200 Subject: [PATCH] drop go-cache references --- README.md | 2 +- cache.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ddce982..90369e1 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Loading Cache Wrapper [![Build Status](https://github.com/go-pkgz/lcw/workflows/build/badge.svg)](https://github.com/go-pkgz/lcw/actions) [![Coverage Status](https://coveralls.io/repos/github/go-pkgz/lcw/badge.svg?branch=master)](https://coveralls.io/github/go-pkgz/lcw?branch=master) [![godoc](https://godoc.org/github.com/go-pkgz/lcw?status.svg)](https://godoc.org/github.com/go-pkgz/lcw) -The library adds a thin layer on top of [lru cache](https://github.com/hashicorp/golang-lru) and [patrickmn/go-cache](https://github.com/patrickmn/go-cache). +The library adds a thin layer on top of [lru cache](https://github.com/hashicorp/golang-lru) and internal implementation of expirable cache. | Cache name | Constructor | Defaults | Description | | -------------- | --------------------- | ----------------- | ----------------------- | diff --git a/cache.go b/cache.go index 5c27ec3..b917bd5 100644 --- a/cache.go +++ b/cache.go @@ -1,4 +1,4 @@ -// Package lcw adds a thin layer on top of lru cache and go-cache providing more limits and common interface. +// Package lcw adds a thin layer on top of lru and expirable cache providing more limits and common interface. // The primary method to get (and set) data to/from the cache is LoadingCache.Get returning stored data for a given key or // call provided func to retrieve and store, similar to Guava loading cache. // Limits allow max values for key size, number of keys, value size and total size of values in the cache.