We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We need to figure out how to manage a faster event bus to cater to more requests. Old crystal based repeater managed ~60Rps when I tested.
The text was updated successfully, but these errors were encountered:
@bararchy EventBus implements a regular RPC. It ensures reliably handle messages but blocks queue while performing a request.
EventBus
I performed 5 tests which sent by 1000 requests with the following payload to development.playground.nexploit.app:
development.playground.nexploit.app
{ "method": "GET", "url": "https://development.playground.nexploit.app/" }
current
previous implementation
As you see 3, 4 and 5 implementations are much faster than 1 (regular RPC). But there're a few issues:
Sorry, something went wrong.
perf(bus): set no-ack mode
e9eeae7
closes #71
perf(bus): set no-ack mode (#72)
ed048ce
derevnjuk
Successfully merging a pull request may close this issue.
We need to figure out how to manage a faster event bus to cater to more requests.
Old crystal based repeater managed ~60Rps when I tested.
The text was updated successfully, but these errors were encountered: