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
Presently we rely on an std::dequeue to buffer messages, service requests and responses. While the size of the queue is kept the same, there is a lot of dynamic allocation happening when pushing and popping from the queue.
We should switch to ring buffers for more performant storage. Currently prototyping something in this branch
The text was updated successfully, but these errors were encountered:
Presently we rely on an
std::dequeue
to buffer messages, service requests and responses. While the size of the queue is kept the same, there is a lot of dynamic allocation happening when pushing and popping from the queue.We should switch to ring buffers for more performant storage. Currently prototyping something in this branch
The text was updated successfully, but these errors were encountered: