chore: stream large lists diff #26
Merged
+2,517
−2,193
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.
NEW FEATURE
streamListDiff()
Streams the diff of two object lists, ideal for large lists and maximum performance.
FORMAT
Input
prevList
: the original object list.nextList
: the new object list.referenceProperty
: a common property in all the objects of your lists (e.g.id
).options
chunksSize
the number of object diffs returned by each streamed chunk. (e.g.0
= 1 object diff by chunk,10
= 10 object diffs by chunk).showOnly
gives you the option to return only the values whose status you are interested in (e.g.["added", "equal"]
).considerMoveAsUpdate
: if set totrue
amoved
value will be considered asupdated
.Output
The objects diff are grouped in arrays - called
chunks
- and are consumed thanks to an event listener. You have access to 3 events:data
: to be notified when a new chunk of object diffs is available.finish
: to be notified when the stream is complete.error
: to be notified of an error during the stream.USAGE
Input
Output
ADDITIONAL FIXES
SWC
to speed up the tests.@models
,@lib
).README.md
.