I'm currently trying to monitor memory used by an embedded Redis in my Spring Boot app. I found the equivalent of the "info memory" command using RedisTemplate, giving general memory usage information. However, it didn't find a way to have more specific memory usage information related to a key which is the equivalent of using the command MEMORY USGAE with redis-cli. Is there a way to get this information programmatically using RedisTemplate ?
There is no redis installed locally on my desktop, and I don't have the rights to install it myself, that's why I have to use an embedded redis.
Best Regards,