-
Notifications
You must be signed in to change notification settings - Fork 175
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
Optimize and Refactor KotlinValueInstantiator.createFromObjectWith #687
Merged
k163377
merged 4 commits into
FasterXML:2.16
from
k163377:feat/refactor-valueinstantiator
Jul 15, 2023
Merged
Optimize and Refactor KotlinValueInstantiator.createFromObjectWith #687
k163377
merged 4 commits into
FasterXML:2.16
from
k163377:feat/refactor-valueinstantiator
Jul 15, 2023
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Changed so that null check of paramVal is done only once - Skip MismatchedInput check when paramVal is non-null - Skip strictNullCheck for empty collections completed by requireEmptyValue
k163377
force-pushed
the
feat/refactor-valueinstantiator
branch
from
July 15, 2023 15:42
e57dd11
to
e6fe727
Compare
Closed
Comparison of benchmark results. The score for no default argument (no 2.15.2
4bd484
|
k163377
added a commit
to k163377/jackson-module-kotlin
that referenced
this pull request
Jul 17, 2023
Added reference to the amount of improvement.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Optimized various checks on
paramVal
.These changes are expected to improve deserialization performance.
In addition, several refactors were made to improve readability.
This optimization was ported from
jackson-module-kogera
.https://github.com/ProjectMapK/jackson-module-kogera/blob/ca6bfe5a1689ebef4dff795ae21ccbe7ca0248df/src/main/kotlin/io/github/projectmapk/jackson/module/kogera/deser/value_instantiator/KotlinValueInstantiator.kt#L64-L79C14