Skip to content

Commit 8639289

Browse files
committed
Add a link to the metrics guide
1 parent 8756f3b commit 8639289

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

.prettierrc.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
semi: false
2+
singleQuote: true
3+
proseWrap: always
4+
printWidth: 100

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,14 @@
33
[![Build Status](https://travis-ci.org/go-redis/cache.svg)](https://travis-ci.org/go-redis/cache)
44
[![GoDoc](https://godoc.org/github.com/go-redis/cache?status.svg)](https://pkg.go.dev/github.com/go-redis/cache/v8?tab=doc)
55

6-
go-redis/cache library implements a cache using Redis as a
7-
key/value storage. It uses [MessagePack](https://github.com/vmihailenco/msgpack) to marshal values.
6+
go-redis/cache library implements a cache using Redis as a key/value storage. It uses
7+
[MessagePack](https://github.com/vmihailenco/msgpack) to marshal values.
88

9-
Optinally you can use [TinyLFU](https://github.com/dgryski/go-tinylfu) or any other [cache algorithm](https://github.com/vmihailenco/go-cache-benchmark) as a local in-process cache.
9+
Optionally, you can use [TinyLFU](https://github.com/dgryski/go-tinylfu) or any other
10+
[cache algorithm](https://github.com/vmihailenco/go-cache-benchmark) as a local in-process cache.
11+
12+
If you are interested in monitoring cache hit rate, see the guide for
13+
[Monitoring using OpenTelemetry Metrics](https://blog.uptrace.dev/posts/opentelemetry-metrics-cache-stats/).
1014

1115
## Installation
1216

0 commit comments

Comments
 (0)