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

SQLite & MySQL: improve perf of Set operations with first-write-wins #3159

Merged
merged 7 commits into from
Nov 1, 2023

Commits on Sep 30, 2023

  1. SQLite: improve perf of Set operations with first-write-wins

    Avoids the needs to start a transaction with 2 queries, using a single, atomic query instead. This avoids locking the database for longer (in SQLite, transactions lock the entire database), and reduces the number of round-trips to the DB from 4 to 1.
    
    Signed-off-by: ItalyPaleAle <43508+ItalyPaleAle@users.noreply.github.com>
    ItalyPaleAle committed Sep 30, 2023
    Configuration menu
    Copy the full SHA
    0272c3b View commit details
    Browse the repository at this point in the history
  2. MySQL too

    Signed-off-by: ItalyPaleAle <43508+ItalyPaleAle@users.noreply.github.com>
    ItalyPaleAle committed Sep 30, 2023
    Configuration menu
    Copy the full SHA
    9c6c9e1 View commit details
    Browse the repository at this point in the history

Commits on Oct 10, 2023

  1. Fixed mysql mocked tests

    Signed-off-by: ItalyPaleAle <43508+ItalyPaleAle@users.noreply.github.com>
    ItalyPaleAle committed Oct 10, 2023
    Configuration menu
    Copy the full SHA
    3779972 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1db6a06 View commit details
    Browse the repository at this point in the history

Commits on Oct 23, 2023

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

Commits on Oct 27, 2023

  1. Merge branch 'master' into sqlite-improv

    Signed-off-by: Bernd Verst <github@bernd.dev>
    berndverst committed Oct 27, 2023
    Configuration menu
    Copy the full SHA
    baccad0 View commit details
    Browse the repository at this point in the history

Commits on Nov 1, 2023

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