You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am not able to find any api, that can allow me to fetch values by passing list of keys.
To be more clear I am looking for a method that can accept List of keys as parameter and returns me Map of key value pairs from redis -
val redis = new RedisClient("localhost", 6379)
redis.getAll(redis.keys("*").get)) // something like this
Note- I have tried hmgetAll() and hmgetAll1() but that is always returning emptyMap
val keyValues = redis.hmgetAll1(redis.keys("*"))
The text was updated successfully, but these errors were encountered:
I am not able to find any api, that can allow me to fetch values by passing list of keys.
To be more clear I am looking for a method that can accept List of keys as parameter and returns me Map of key value pairs from redis -
Note- I have tried hmgetAll() and hmgetAll1() but that is always returning emptyMap
The text was updated successfully, but these errors were encountered: