I need to know when data is written on specific keys on a Redis store.
Is there any way to listen to Redis key events using Node.js or do I have to use the pub/sub utilities?
In the second case, what would be the best way to do it?
I need to know when data is written on specific keys on a Redis
Share
As far as I know redis itself doesn’t natively support key change notifications yet although there are other alternatives including a pub/sub based solution.