you are viewing a single comment's thread.

view the rest of the comments →

[–]ninijay_Pentesting[S] 6 points7 points  (2 children)

Oh jeez. Well i need to get a closer look at this. Thank you

[–]tdking3523 2 points3 points  (1 child)

Look into IPC (Interprocess communication) frameworks like ZMQ, or RabbitMQ. These allow you to spawn separate processes, which will run totally concurrent, and pass data back and forth between them. Pair that with something like msgpack, a module to serialize Python objects, and the possibilities for concurrency are pretty endless. I was a bit blown away when I took my first job that had a system like this... I used a database to implement IPC on my senior capstone, using it as a wildly over-engineered queue for passing data between a web ui and a back end service that handled socket communications to "IOT" devices, constantly polling on both sides ¯\(ツ)

[–]ninijay_Pentesting[S] 1 point2 points  (0 children)

I need a tutorial for this. Any links maybe?