I can get one Key/Value from Redis with Python in this way:
import redis
r = redis.StrictRedis(host='localhost', port=6379, db=0)
data = r.get('12345')
How to get values from e.g. 2 keys at the same time (with one call)?
I tried with: data = r.get('12345', '54321')
but that does not work..
Also how to get all values based on partial key?
e.g. data = r.get('123*')
r.hgetall
. redis.io/topics/data-types-intro#redis-hashes – Flashback