Saturday, 15 January 2011

ipc - Which type of connection do I make for Shared Memory in ZeroMQ? -


I have one application that receives value from the sensor and has a very high rate. Just want to create the Python code to get the latest value, when the Python code requests.

I was thinking about using shared memory for this purpose, but I do not see any example in the ZeroMQ website.

I'm new to ZeroMQ. I do not know whether this is also possible.

Are you essentially using ZMQ as a vehicle for two different processes Store and recover between shared memory space? If so, then you are digging in details which are not available for you in ZMQ. Generally, in your situation you will use the "IPC" connection protocol, and JMM decides to store, send and retrieve that message on your system.

I have not seen in the following how it can choose the option to do this in any scenario, I do not expect it to use shared memory, but somehow, I am not aware of any way of implementing ZMQ to behave.


No comments:

Post a Comment