1 Resposta
- Mais recentes
- Mais votos
- Mais comentários
1
querystring parameters changes or do i have to control
Im not sure on which querystring params you are referring to but pagination works like this:
- Request up to 1MB of data
- DynamoDB returns 1MB and provides you with a
LastEvaluatedKeywhich is a pointer to the last item it read - In subsequent requests, you pass
LastEvaluatedKeyto theExclusiveStartKeyparameter, which tells DynamoDB where to begin reading - This logic keeps happening until there is no
LastEvaluatedKeyreturned, which means you have read all the data available.
