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

Conversation

dmarsic
Copy link
Contributor

@dmarsic dmarsic commented Nov 14, 2022

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.

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.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant