How to get List<String> in RedisPubSubListener.message? #3050
Unanswered
v-chernyshev
asked this question in
Q&A
Replies: 1 comment
-
Hey @v-chernyshev , Thanks for logging this and thanks for providing a reproducer to test it. Please allow the team some time to analyse the problem and we will get back to you ASAP |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Good afternoon,
I'm trying to implement RESP2-based client-side caching support using lettuce, and currently have this code in place to test the cache invalidation events:
Everything is fine for commands that modify single keys, e.g.
SET foo bar
results inChannel: __redis__:invalidate, Message: foo
printed. Multi-key commands, however, don't behave as I expect. ForMSET foo bar baz qux
the above code only producesChannel: __redis__:invalidate, Message: foo
. Thebaz
invalidation event is effectively lost. Here is the output ofredis-cli
for comparison:Could you please advise how to get the list of all the affected keys in the listener?
Beta Was this translation helpful? Give feedback.
All reactions