i have two processes so process one generate some container object and send it to process two.
what is best way to have object queue between two process .i prefer boost library,
but as i know with shared memory we cant have unlimited memory space in share.
i have two processes so process one generate some container object and send it
Share
You can use, e.g., shared memory, pipes or sockets or TCP for normal sized queues between processes. If you really need to funnel huge amount of data then you might want to also consider using files, sending only, e.g., file names through your queue.
Nevertheless, there is always some kind of a limit there.