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

perf: prepare sessions with r/w tx in-process #152

Merged
merged 3 commits into from Apr 22, 2020

Commits on Apr 16, 2020

  1. perf: prepare sessions with r/w tx in-process

    Preparing sessions with a read/write transaction using a background
    executor works well as long as that executor is not being overloaded.
    When the executor has reached its limit, it is more efficient to allow
    the read/write transaction to be created in-process, as that scales
    with the number of user threads available, instead of being limited to
    the fixed thread pool of the background executor.
    
    Fixes #151
    olavloite committed Apr 16, 2020
    Copy the full SHA
    9e08ee3 View commit details
    Browse the repository at this point in the history

Commits on Apr 22, 2020

  1. Copy the full SHA
    fcb403d View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    9baf197 View commit details
    Browse the repository at this point in the history