You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
8
8
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/).
0 commit comments