I want to use Redis pipeline (execute multiple commands) in django-redis.
We can use multi and exec command in Redis but how we can in django-redis ?
One solution is :
I have list of hash keys i want to get all hashes using of hash key.
On every iteration command send to redis server to fetch one by one hash.
for hashkey in feedlist:
result = con.execute_command('hgetall',hashkey)
print(result)
This is not a good idea instead of this we can use redis pipeline. But how i can achieve Redis pipeline in django-redis ?