1개 답변
- 최신
- 최다 투표
- 가장 많은 댓글
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.
