From 2b2801cd19ac845e98b82f89c7e84b85a1938a6c Mon Sep 17 00:00:00 2001 From: Karl Seguin Date: Thu, 3 Mar 2022 22:40:57 +0800 Subject: [PATCH] note about not using the generic version yet --- readme.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/readme.md b/readme.md index 9b1f588..41deba6 100644 --- a/readme.md +++ b/readme.md @@ -9,17 +9,15 @@ Lock contention on the list is reduced by: Unless otherwise stated, all methods are thread-safe. -## Setup - -The generic version is not ready to be used yet. - ## Configuration Next, import and create a `Cache` instance: ```go import ( - "github.com/karlseguin/ccache/v3" + // The generic version of this cache isn't battle-tested + // use it with caution. Prefer the original non-generic + // implementation for now: github.com/karlseguin/ccache/ ) // create a cache with string values