-
Notifications
You must be signed in to change notification settings - Fork 0
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
FilterExpression in query #5
Comments
Hi @obazoud - sorry, I missed this question. No, there isn't. DynamoDB filters are only executed client side (not cloud side) and in my experience it's easier to use regular code (e.g. a |
In Amazon DynamoDB, filter expressions are executed server-side after retrieving the items that match the query criteria but before the results are returned to the client. This means that filters reduce the number of items returned but do not affect the number of read capacity units consumed, as all items matching the query criteria are initially read. |
Hi @obazoud - OK, you made me go and read up, and you're correct. :) However filter expressions do still have enough limitations that I'm not sure I've ever used them. I haven't heard of many people using this library, so I don't feel strongly about putting more work in to add this. However if I were to add it I'd probably extend the various |
Hello,
Is there a way to add an
FilterExpression
when I query a dynamodb table ?Thanks
The text was updated successfully, but these errors were encountered: