Spring Data Key Vale - RedisTemplate question
Is there any operation which I can pass through parameter to redisTemplate a List of values and it makes a comparison between the fullsets received via parameter and the content stored on redis memory and return to me a set of values resulted from a intersection between those fullsets?
Something like this:
A ∧ B => C
Where A is a List and B the redisTemplate content already stored and C is the final result from the "merge/intersection" between A and B
Does redisTemplate has this kind of operation? I tried to find on redisTemplate.opsForList() but I couldnt find it :(
Thanks