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: add filter for read #4

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Commits on Nov 14, 2022

  1. feat: add filter for read

    Adds a new read function that allows specifying a list of resource
    keys to act as a filter for the returned results.
    
    The same can be achieved using the existing functions:
    - Using Read multiple times by requesting a next resource on each iteration.
      The difference with the proposed solution is that ReadFiltered keeps a
      mutex open and so avoids nonrepeatable reads.
    - Using ReadAll and filtering on the client side. This is likely just wasteful
      as it fetches all the records regardless of the selection that the client
      requested.
    dmarsic committed Nov 14, 2022
    Configuration menu
    Copy the full SHA
    faa8b7d View commit details
    Browse the repository at this point in the history