I am using django 3.0.4 and python 3.6.9. I have to use hset operation to set some values in redis cache.
- My try:
from django.core.cache import caches
cache.set(), cache.get() // these operation are working
But I am not able to use hset and hget operation using this library. There is no proper documentation about this in Django official docs.
Note: I have referred this (Not A copy)