i am using spring boot web flux with redisson. I want to enable all key expired event in my application. i tried it this way. but it doesn't work.
this.client.getTopic("__keyevent@*__:expired", StringCodec.INSTANCE)
.addListener(String.class, new MessageListener<String>() {
@Override
public void onMessage(CharSequence channel, String msg) {
//
}
});
I wish a help to resole this problem.