I have two keys in the Redis. First key contains set of strings as a value.Second key contains the sorted set of object(String as a value and score ). I want to fetch elements where string in first key and string field of the object in the second key are similar.
If I replace object with a string in the second key,I am able to fetch but I want to fetch list of strings along with their score.
I am using Spring-data-redis and jedis for Redis handling.
Is it possible to fetch list of common strings and their corresponding score? If yes, how.