Keyspace notifications do not report the value, only the key's name and/or command performed are included in the published message.
The main underlaying reasoning for this is that Redis values can become quite large.
If you really really really need this kind of behavior, well that's pretty easy actually. Because keyspace notifications are using Pub/Sub messages, you can just call PUBLISH yourself after each relevant operation, and with the information that you're interested in.
Videos
Hi All,
I was trying redis keyspace notification in redis-cli
so when I tried command
````redis-cli config set notify-keyspace-events KEA` and `redis-cli --csv psubscribe '__key*__:*'` then the notification for all the events was coming in the redis cli
but when I tried the command such that I get notification only when the key is set then nothing happens
the command that I used were as follows
`redis-cli config set notify-keyspace-events Ks` and `redis-cli --csv psubscribe '__key*__:*'` can anyone tell why this is happening.