Hi Team,
I've developed an application and used FastCache as an in-memory data store. So far, everything works fine. One thing I'm struggling is to figure out is how to see the cache usage in megabytes.
So,
- Is there a way to get the cache usage (not the allocation) and/or the free quota?
- If it's not possible at the moment, would such a feature be made available in the future?
There's some confusion in the documentation as well, when creating a cache using fastcache.New(maxBytes)
(https://pkg.go.dev/github.com/VictoriaMetrics/fastcache#New)
- If we need a cache of 64MB, should we specify maxBytes as 64 or 64000000?
Hi Team,
I've developed an application and used FastCache as an in-memory data store. So far, everything works fine. One thing I'm struggling is to figure out is how to see the cache usage in megabytes.
So,
There's some confusion in the documentation as well, when creating a cache using
fastcache.New(maxBytes)(https://pkg.go.dev/github.com/VictoriaMetrics/fastcache#New)