We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b2801c commit faaa8b2Copy full SHA for faaa8b2
readme.md
@@ -9,15 +9,14 @@ Lock contention on the list is reduced by:
9
10
Unless otherwise stated, all methods are thread-safe.
11
12
-## Configuration
13
-Next, import and create a `Cache` instance:
+The non-generic version of this cache can be imported via `github.com/karlseguin/ccache/`.
14
+## Configuration
15
+Import and create a `Cache` instance:
16
17
```go
18
import (
- // The generic version of this cache isn't battle-tested
19
- // use it with caution. Prefer the original non-generic
20
- // implementation for now: github.com/karlseguin/ccache/
+ github.com/karlseguin/ccache/v3
21
)
22
23
// create a cache with string values
0 commit comments