We were unable to load Disqus. If you are a moderator please see our troubleshooting guide.

Tt&tT • 5 years ago

how to create pagination ?

Martin Schnurer • 6 years ago

What is the best way to update many-to-many item relationships where data are denormalized?

bkk • 6 years ago

Can I know how to insert more than 25 items into dynamodb table on a single go?

Alex D • 6 years ago

bkk You won't be able to with the BatchWriteItem call, as it only takes 25 items as a time. That said, some languages have higher-level methods that help split a large amount of items into smaller batches. For example, in Boto3 (Python), there is a Table resource with a batch_writer method --> https://boto3.amazonaws.com...