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

LFU Cache Fixes #7479

Merged
merged 9 commits into from
Feb 12, 2021
Merged

LFU Cache Fixes #7479

merged 9 commits into from
Feb 12, 2021

Commits on Feb 10, 2021

  1. bloom: fix constructor

    The existing API for the Bloom Filter constructor was, huh, not ideal.
    There is no need to use variable args and check the values of the args
    for their meaning.
    
    Signed-off-by: Vicent Marti <vmg@strn.cat>
    vmg committed Feb 10, 2021
    Configuration menu
    Copy the full SHA
    a2e6f52 View commit details
    Browse the repository at this point in the history
  2. query_engine: Implement contention benchmark

    Signed-off-by: Vicent Marti <vmg@strn.cat>
    vmg committed Feb 10, 2021
    Configuration menu
    Copy the full SHA
    8c3580a View commit details
    Browse the repository at this point in the history
  3. query_engine: add a throughput benchmark

    Signed-off-by: Vicent Marti <vmg@strn.cat>
    vmg committed Feb 10, 2021
    Configuration menu
    Copy the full SHA
    a21d244 View commit details
    Browse the repository at this point in the history
  4. cache: enable LFU by default

    Signed-off-by: Vicent Marti <vmg@strn.cat>
    vmg committed Feb 10, 2021
    Configuration menu
    Copy the full SHA
    e04aa3f View commit details
    Browse the repository at this point in the history
  5. dev: ensure dev.env is posix compatible

    the '==' operator is not posix; you're supposed to use a single '='
    
    Signed-off-by: Vicent Marti <vmg@strn.cat>
    vmg committed Feb 10, 2021
    Configuration menu
    Copy the full SHA
    cf525df View commit details
    Browse the repository at this point in the history

Commits on Feb 11, 2021

  1. cache: make endtoend tests more resilient

    Signed-off-by: Vicent Marti <vmg@strn.cat>
    vmg committed Feb 11, 2021
    Configuration menu
    Copy the full SHA
    2cd3611 View commit details
    Browse the repository at this point in the history
  2. endtoend: delay execution

    Signed-off-by: Vicent Marti <vmg@strn.cat>
    vmg committed Feb 11, 2021
    Configuration menu
    Copy the full SHA
    a5b9f1b View commit details
    Browse the repository at this point in the history
  3. query_engine: typo

    Signed-off-by: Vicent Marti <vmg@strn.cat>
    vmg committed Feb 11, 2021
    Configuration menu
    Copy the full SHA
    b197d61 View commit details
    Browse the repository at this point in the history

Commits on Feb 12, 2021

  1. endtoend: uncomment test

    Signed-off-by: Vicent Marti <vmg@strn.cat>
    vmg committed Feb 12, 2021
    Configuration menu
    Copy the full SHA
    e1d8a81 View commit details
    Browse the repository at this point in the history