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

Avoid extra mutex contention #189

Merged
merged 3 commits into from
Aug 8, 2024

Commits on Aug 7, 2024

  1. Fix reaper exhausting the queue

    After max queue size connections have been reaped, no new connections are allowed to be created.
    albus522 committed Aug 7, 2024
    Configuration menu
    Copy the full SHA
    4dc7d55 View commit details
    Browse the repository at this point in the history

Commits on Aug 8, 2024

  1. Reduce contention on the stack mutex

    The connection shutdown block can safely happen outside the mutex. This allows another thread to safely grab a connection while the reaper is still working through old connections.
    albus522 committed Aug 8, 2024
    Configuration menu
    Copy the full SHA
    699ed70 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7f39116 View commit details
    Browse the repository at this point in the history