I want to use amazon Dynamo DB with rails.But I have not found a way to implement pagination.
I will use AWS::Record::HashModel as ORM.
AWS::Record::HashModel
This ORM
You issue queries using LIMIT. If the subset returned does not contain the full table, a LastEvaluatedKey value is returned. You use this value as the ExclusiveStartKey in the next query. And so on...
LastEvaluatedKey
ExclusiveStartKey
From the DynamoDB Developer Guide.