-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
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
Support request body #13
Comments
Currently, there is no way to lift all threads to worker pool from XNIO pool. Immutant has |
Something like this? #16 |
PR looks good, one post comment (rebased already) + we are not setting the body yet. Maybe do it only when |
We are actually setting the body when we are in a blocking thread ( |
Simple way would be to invoke the actual ring/routing handler in the callback only after the body has been read in There are many ways to optimize that afterwards: if the data is huge, should be handled in chuncks (I guess the |
"invoke the actual ring/routing handler in the callback" but wouldn't this block the IO thread? |
It your code is non-blocking, you can run it in the IO Thread. I think there are 4 different ways in this:
|
Any update on how to best implement this? I think this is the last issue that needs to be resolved before the library can be used in production. Would be happy to help if the right approach were documented. |
Hey everyone, any update? It's been a year |
When doing a
POST
request the:body
in the request map isnil
.The text was updated successfully, but these errors were encountered: