-
Notifications
You must be signed in to change notification settings - Fork 451
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 Tasks collections in .Net 9 #7585
Conversation
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.
Nitpick: In some places we add items to the pool in a for
loop with .Add()
, in other places, with LINQ's .Select()
or Enumerable.Range().Select()
. Isn't it worth unifying the approach?
…on-optimize-tasks
83982fb
to
2d20327
Compare
…ration-optimize-tasks # Conflicts: # global.json # src/Nethermind/Directory.Build.props # src/Nethermind/Directory.Packages.props # src/Nethermind/Nethermind.State/PersistentStorageProvider.cs # src/Nethermind/Nethermind.Trie/Pruning/TrieStore.cs # tools/Directory.Build.props # tools/HiveCompare/HiveCompare.csproj
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.
Why the .orig files?
github merge fail |
Builds upon #7532
Changes
WaitAll
,WhenAll
andWhenAny
Types of changes
What types of changes does your code introduce?
Testing
Requires testing
If yes, did you write tests?