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

transient in memory cache #4922

Draft
wants to merge 10 commits into
base: dev
Choose a base branch
from
Draft

transient in memory cache #4922

wants to merge 10 commits into from

Commits on Apr 5, 2024

  1. transient in memory cache

    This adds another level of in memory cache, to mitigate issues with
    unique or infrequent queries pushing frequently used queries out of the
    in memory cache.
    If a query has only been seen once, then it is stored inthe transient
    cache (short term, small number of entries, LRU).
    If that query is requested again, and is still present in the transient
    cache, then it is added to the long term, larger in memory cache, to the
    redis cache as well, and removed from the transient cache.
    If that query is requested again but not present in the transient cache,
    then we test the larger in memory cache and redis
    Geal committed Apr 5, 2024
    Configuration menu
    Copy the full SHA
    fbd6971 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a9cc626 View commit details
    Browse the repository at this point in the history
  3. snapshot

    Geal committed Apr 5, 2024
    Configuration menu
    Copy the full SHA
    a65edd2 View commit details
    Browse the repository at this point in the history
  4. snapshot

    Geal committed Apr 5, 2024
    Configuration menu
    Copy the full SHA
    45f5d6b View commit details
    Browse the repository at this point in the history
  5. fix tests

    Geal committed Apr 5, 2024
    Configuration menu
    Copy the full SHA
    b9d1b08 View commit details
    Browse the repository at this point in the history

Commits on Apr 8, 2024

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

Commits on Apr 12, 2024

  1. Configuration menu
    Copy the full SHA
    32f1903 View commit details
    Browse the repository at this point in the history
  2. fix config defaults

    Geal committed Apr 12, 2024
    Configuration menu
    Copy the full SHA
    6a48b8b View commit details
    Browse the repository at this point in the history

Commits on Apr 23, 2024

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

Commits on Apr 29, 2024

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