How to get notified if any changes / transactions happen in redis using nodejs

I'm new to redis, I need help to get notified on my running server if any actions / transactions occur in redis (or from bakend). A working server is created using node.js

+4
source share
1 answer

Use a key notification system. It uses an extra pub redis layer

Steps: Set this parameter -notify-keyspace-events in the redis.conf file. The default is empty.

This will capture almost all DML events.

0
source

Source: https://habr.com/ru/post/1677450/


All Articles