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

Add global key prefix for keys set by Redis transporter #1349

Merged
merged 6 commits into from
Aug 25, 2021

Commits on Aug 19, 2021

  1. Introduce global key prefix for redis transport

    Co-authored-by: Matus Valo <[email protected]>
    2 people authored and gabor-boros committed Aug 19, 2021
    Configuration menu
    Copy the full SHA
    54a9582 View commit details
    Browse the repository at this point in the history
  2. refactor: use a custom redis client

    As per the suggestions, refactor the redis key prefixing to use a custom
    redis client that prefixes the keys it uses.
    
    The custom client implementation does not prefix every key by default as
    the way of prefixing keys may differ for some redis commands, instead it
    lists those keys that will be prefixed. In case of commands, where
    multiple keys can be passed as an argument, the custom client defines
    where the arg positions are starting and ending for the given command.
    gabor-boros committed Aug 19, 2021
    Configuration menu
    Copy the full SHA
    0c12e02 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d95ce1d View commit details
    Browse the repository at this point in the history

Commits on Aug 23, 2021

  1. fix: wrap redis.parse_response to remove key prefixes

    Co-authored-by: Matus Valo <[email protected]>
    pomegranited and matusvalo committed Aug 23, 2021
    Configuration menu
    Copy the full SHA
    537534a View commit details
    Browse the repository at this point in the history
  2. fix: typo

    pomegranited committed Aug 23, 2021
    Configuration menu
    Copy the full SHA
    434f923 View commit details
    Browse the repository at this point in the history
  3. fix: lint

    pomegranited committed Aug 23, 2021
    Configuration menu
    Copy the full SHA
    5e6dcc8 View commit details
    Browse the repository at this point in the history