Skip to content
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

Reduce TaskExecutor overhead #13861

Merged

Commits on Oct 5, 2024

  1. Reduce TaskExecutor overhead

    The `TaskGroup` class is redundant, the futures list can be a local variable
    shared by the tasks (this also removes any need for making it read-only).
    The tasks can be made a little more lightweight too by using a var handle
    instead of an atomic.
    original-brownbear committed Oct 5, 2024
    Configuration menu
    Copy the full SHA
    e951066 View commit details
    Browse the repository at this point in the history

Commits on Oct 7, 2024

  1. Configuration menu
    Copy the full SHA
    d2ba0a7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    24e271e View commit details
    Browse the repository at this point in the history