DynamoDB is all about knowing your data access patterns
This because using the primary key will usually result in a much lower cost query and how do you do that? Avoid the “table.scan” function at all cost, as it will scan all rows in your table, even if you eventually don’t need 99.9999% of them, and the count against your consumed RCUs. import boto3 …
DynamoDB is all about knowing your data access patterns Read More »