I have multiple keys in redis such as key_1, key_2, key_3 and so on. I wanted to append "s" after each keys prefix, (here key prefix is "key") so it will become keys_1, keys_2, keys_3
I am using django cache
from django.core.cache import cache
is there any functionality that can rename keys based on pattern or is there anything in redis-cli to solve this problem.
Please help.