Redis memory getting full

My VRT Redis Memory is getting full day by day, How I can find the most memory occupied hash/cache.

2 Likes

Run the below command on redis server:

  • redis-cli --bigkeys
  • You can see the most memory occupied hash/cache.

image

4 Likes

Thanks @naveen.gupta.

Just to add, This will show you the list of keys that are the biggest in size. Why are they consuming that much is all together a different question and need to be looked at. The reason can be different in different scenarios.

2 Likes