I'm using twisted to get messages from internet connected sensors in order to store it to a db.
I want to check these messages without interfere these process,because I need compare every message with some base values at db, if some is matched I need trigger an alert for this, and the idea is not block any process...
My Idea is create a new process to check and alert, but I need after the first process store the message, it will send the message to the new process in order to check and alert if is required.
I'm need IPC for this, and I was thinking to use ZeroMQ, but also twisted have a approach to work with IPC, I think if I use ZeroMQ, but maybe it will be self-defeating...
What think you about my approach? Maybe I'm completely wrong at all?
Any advice are welcome..
Thanks
PD:This Process will run at a dedicated server, with a expected load of 6000 msg/hour of 1Kb each one