DynamoDB Conditional Operations and Atomic Counters
Updating items in DynamoDB has two special cases - Conditional Operations and Atomic Counters.
Conditional Operations and Expressions
By default, the DynamoDB write operations (PutItem, UpdateItem, DeleteItem) are unconditional: each of these operations will overwrite an existing item that has the specified primary key. In certain cases such as multiple users attempting to modify the same item, this might create problems.
- Read more about DynamoDB Conditional Operations and Atomic Counters
- Log in or register to post comments
Recent comments