Category Archives: dynamodb

Khóa học miễn phí DynamoDB – Scan nhận dự án làm có lương

DynamoDB – Scan Scan Operations read all table items or secondary indices. Its default function results in returning all data attributes of all items within an index or table. Employ the ProjectionExpression parameter in filtering attributes. Every scan returns a result set, even on finding no matches, which results in an empty set. Scans retrieve […]

Khóa học miễn phí DynamoDB – Indexes nhận dự án làm có lương

DynamoDB – Indexes DynamoDB uses indexes for primary key attributes to improve accesses. They accelerate application accesses and data retrieval, and support better performance by reducing application lag. Secondary Index A secondary index holds an attribute subset and an alternate key. You use it through either a query or scan operation, which targets the index. […]

Khóa học miễn phí Global Secondary Indexes nhận dự án làm có lương

DynamoDB – Global Secondary Indexes Applications requiring various query types with different attributes can use a single or multiple global secondary indexes in performing these detailed queries. For example − A system keeping a track of users, their login status, and their time logged in. The growth of the previous example slows queries on its […]