I will develop a system that will include a data collection server, where each acquisition will fill in a line. I should also be able to inform the user app about when the new data was received.
From what I read, it is not recommended to use the database as a message queue and vice versa, but I was wondering if I can use both of these words:
The receiving application can add a new row to the database and then notify listeners in the messaging system. Would this be the best approach for this type of system? Would it be too hard? Is there a design template that already implements this?
source share