I have a query regarding redis two operations performing in single command like String command and Hash command at a time for fetching their values from Redis Server.
SET key1 value1 SET key2 value2
HSET key3 field3 value3 HSET key4 field4 value4
Suppose we want to get multiple String value using MGET and same ways in Hashes using HMGET
but now we want Single String value and Hashes value in single command.
like want to get 'value1' and 'Value3' respective String and Hashes keys.
Please Explain this query.
I tried to get from HMGET command for fetching miscellanies value for multiple operations.