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

feat: delay transaction start option #2462

Merged
merged 8 commits into from Jun 2, 2023
Merged

Commits on May 23, 2023

  1. feat: delay transaction start option

    Adds an opt-in to delay the actual start of a read/write transaction
    until the first write operation. This reduces lock contention and can
    reduce latency for read/write transactions that execute (many) read
    operations before any write operations, at the expense of a lower
    transaction isolation level. Typical workloads that benefit from this
    option are ORMs (e.g. Hibernate). The application must be able to handle
    the lower isolation level.
    olavloite committed May 23, 2023
    Configuration menu
    Copy the full SHA
    f11b96b View commit details
    Browse the repository at this point in the history

Commits on May 24, 2023

  1. fix: clirr check

    olavloite committed May 24, 2023
    Configuration menu
    Copy the full SHA
    2c39555 View commit details
    Browse the repository at this point in the history

Commits on May 25, 2023

  1. Configuration menu
    Copy the full SHA
    9db90fa View commit details
    Browse the repository at this point in the history

Commits on May 26, 2023

  1. test: add integration tests

    olavloite committed May 26, 2023
    Configuration menu
    Copy the full SHA
    0dbbf3c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4fb23cc View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    438e736 View commit details
    Browse the repository at this point in the history

Commits on Jun 1, 2023

  1. Configuration menu
    Copy the full SHA
    d828f64 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fc0f7ed View commit details
    Browse the repository at this point in the history