fix(deps): update module github.com/puzpuzpuz/xsync/v4 to v4.4.0 (master)#6206
Merged
zhangzujian merged 1 commit intomasterfrom Jan 25, 2026
Merged
Conversation
Pull Request Test Coverage Report for Build 21322456382Details
💛 - Coveralls |
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.
This PR contains the following updates:
v4.3.0→v4.4.0Release Notes
puzpuzpuz/xsync (github.com/puzpuzpuz/xsync/v4)
v4.4.0Compare Source
Mapfor integer keys #185Map.RangeRelaxedmethod for faster map iteration #187Map.DeleteMatchingmethod for batch entry deletion #186Read-heavy operations on
Mapwith integer keys are now 24-29% faster due to a more efficient hash function, as well as a number of micro-optimizations.RangeRelaxedis a much faster (~11x), lock-free alternative toRange. The downside is that the same key may be visited byRangeRelaxedmore than once if it is concurrently deleted and re-inserted during the iteration.RangeRelaxedshould be preferred overRangein all cases when weaker consistency is acceptable.DeleteMatchingdeletes all entries for which the delete return value of the input function is true. If the cancel return value is true, the iteration stops immediately. The function returns the number of deleted entries. The call locks a hash table bucket for the duration of evaluating the function for all entries in the bucket and performing deletions. It performs up to 20% faster thanRange+Delete, yet if the percentage of the entries to-be-deleted is low,RangeRelaxed+Deletecombination should be more efficient.Configuration
📅 Schedule: Branch creation - Between 03:00 PM and 11:59 PM ( * 15-23 * * * ) (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.