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
I'm trying to improve the throughput of an app I'm building. Essentially, it currently uses Unix Domain Sockets to transfer messages between two processes. This is because they are well supported in many programming languages, and easy to use for request/reply.
But combining the two process into a single process I get 10x the TPS. So I know there is up-to 10x potential improvement.
My questions is, can mmap do this, give some constraints:
Request/reply (like HTTP).
Concurrent, multiple request/replies in flight.
The text was updated successfully, but these errors were encountered:
You should totally give it a try though I don't think bigqueue would be a right fit across processes given the current state of things. We do plan to improve bigqueue to work across processes but that is not the case today.
I'm trying to improve the throughput of an app I'm building. Essentially, it currently uses Unix Domain Sockets to transfer messages between two processes. This is because they are well supported in many programming languages, and easy to use for request/reply.
But combining the two process into a single process I get 10x the TPS. So I know there is up-to 10x potential improvement.
My questions is, can
mmap
do this, give some constraints:The text was updated successfully, but these errors were encountered: