You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, we are using the message queue implementation from MappedBus.
This message queue is backed by shared memory, but it is not a circular queue, which means it will stop working when the write pointer reaches the end of the shared memory.
We need to implement a circular message queue backed by shared memory. And the message queue should be safe for multiple threads or processes.
The text was updated successfully, but these errors were encountered:
Currently, we are using the message queue implementation from MappedBus.
This message queue is backed by shared memory, but it is not a circular queue, which means it will stop working when the write pointer reaches the end of the shared memory.
We need to implement a circular message queue backed by shared memory. And the message queue should be safe for multiple threads or processes.
The text was updated successfully, but these errors were encountered: