I query a MySQL table in my c# console app. Thousands of updates(row) are coming in all the times via another program and I want to propagate them, let's say for an easy way Console.WriteLine, in the fastest possible way (almost instantly). See diagram.
Where do I do it in the most efficient/fastest way? On the MySQL Server? Or in my c# script?
If in my c# sript, do I use lists to compare old vs new row, or arrays? Any other way?
Any help is highly appreciated.