concurrentqueue
concurrentqueue copied to clipboard
Use of queue when producer is in a different process from consumer (over shared memory)
I'd like to be able to use this queue where the producer is in a separate process from the consumer (via Linux shared memory). What issues if any do you see when trying to do this?
The design of this queue makes it unsafe to share between processes. See https://github.com/cameron314/concurrentqueue/issues/236#issuecomment-758046065 and #132.