I want to store some users' info to redis for each user. Data type is used key-value.
For example:
$redis.set("user_info:12345", #{some data})
Is there any way to evaluate memory footprint?
I think redis key and value all will consume the memory, how to know how much memory consumed?