Shortcut when two json documents are same#37
Merged
tamalsaha merged 3 commits intogomodules:release-2.0from Aug 14, 2023
nak3:fix-bench
Merged
Shortcut when two json documents are same#37tamalsaha merged 3 commits intogomodules:release-2.0from nak3:fix-bench
tamalsaha merged 3 commits intogomodules:release-2.0from
nak3:fix-bench
Conversation
Signed-off-by: Kenjiro Nakayama <nakayamakenjiro@gmail.com>
Signed-off-by: Kenjiro Nakayama <nakayamakenjiro@gmail.com>
Author
|
Could you please take a look? |
tamalsaha
reviewed
Aug 9, 2023
Signed-off-by: Kenjiro Nakayama <nakayamakenjiro@gmail.com>
|
https://github.com/gomodules/jsonpatch/releases/tag/v2.4.0 Thanks for the contribution @nak3 ! |
This file contains hidden or 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
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.
When two json documents are same, patch is not created.
However, current code tries to check the diff and takes some time and memory.
Hence this patch adds
bytes.Equalbefore creating patch to skip it.Also, the current bench mark
largeArrayis using a same valueso update it to use different values in array.
Here is the bench mark before(13a9e4a) and after (d5e5602).
large_arraybecomes much faster.reflect.DeepEqualdoes not make much performance degradation as percomplexandsimpletests.