I would like to monitor every table changes in a MySql table, (insert, update, delete), using ReactPHP. Is it possible? If yes how I can do it?
Asked
Active
Viewed 70 times
0
-
Perhaps using triggers in the database that updates a table, then a CRON job that checks the table. – Petter Pettersson Dec 21 '18 at 13:02
-
I had done it, also with a nodejs script, but I'd like to do it with ReactPHP – Max Fagotto Dec 21 '18 at 14:42