concurrentqueue icon indicating copy to clipboard operation
concurrentqueue copied to clipboard

Use of queue when producer is in a different process from consumer (over shared memory)

Open lel4866 opened this issue 3 years ago • 1 comments

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?

lel4866 avatar Aug 31 '22 16:08 lel4866

The design of this queue makes it unsafe to share between processes. See https://github.com/cameron314/concurrentqueue/issues/236#issuecomment-758046065 and #132.

cameron314 avatar Sep 03 '22 16:09 cameron314