-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
JacksonEncoder avoids intermediate String request body #989
Conversation
Serialize Jackson request object directly to UTF-8 byte array without intermediate String representation. See https://github.com/FasterXML/jackson-docs/wiki/Presentation:-Jackson-Performance#basics-things-you-should-do-anyway
Serialize Jackson request object directly to UTF-8 byte array without intermediate String representation. Introduces local Jackson encoder until OpenFeign/feign#989 is upstreamed. See https://github.com/FasterXML/jackson-docs/wiki/Presentation:-Jackson-Performance#basics-things-you-should-do-anyway
…#1131) Serialize Jackson request object directly to UTF-8 byte array without intermediate String representation. Introduces local Jackson encoder until OpenFeign/feign#989 is upstreamed. See https://github.com/FasterXML/jackson-docs/wiki/Presentation:-Jackson-Performance#basics-things-you-should-do-anyway
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for this PR. I have one, very small suggestion.
Thanks for the review @kdavisk6 . I've updated the PR with your suggestion. |
I've marked this PR as ready to merge. If there are no additional comments in the next few days, this PR will be merged and is attached to our 10.3.0 Release. |
Excellent, thank you! |
* JacksonEncoder avoids intermediate String request body Serialize Jackson request object directly to UTF-8 byte array without intermediate String representation. See https://github.com/FasterXML/jackson-docs/wiki/Presentation:-Jackson-Performance#basics-things-you-should-do-anyway * Use Util.UTF_8
* JacksonEncoder avoids intermediate String request body Serialize Jackson request object directly to UTF-8 byte array without intermediate String representation. See https://github.com/FasterXML/jackson-docs/wiki/Presentation:-Jackson-Performance#basics-things-you-should-do-anyway * Use Util.UTF_8
Serialize Jackson request object directly to UTF-8 byte array without intermediate String representation.
See https://github.com/FasterXML/jackson-docs/wiki/Presentation:-Jackson-Performance#basics-things-you-should-do-anyway