I am using redis-py
(python redis library) in my code and would like to use the strings output by an SMEMBERS
command directly in an MGET
command. I would like to do this without pulling all of the members into my python program, and then sending the MGET
command using that data. I'm not sure if redis
(the actual database application itself) has any provisions for using output as input to another within itself, but I also a novice with it.
Is this something redis is capable of, a sort of internal piping?