Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Respect the pagination size for queries #117

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Commits on Jan 17, 2018

  1. Respect the pagination size for queries

    This change respects the pagination size as provided from a Pageable
    object given to a findXXX method.
    Mostly important in conjunction with lazy list processing via
    ```java
    DynamoDBMapperConfig.Builder builder = new DynamoDBMapperConfig.Builder();
    builder.setPaginationLoadingStrategy(PaginationLoadingStrategy.ITERATION_ONLY);
    ```
    as this loads the result set of a query page-by-page.
    Also see the comments in
    `com.amazonaws.services.dynamodbv2.datamodeling.PaginatedQueryList<T>` as
    used by
    `org.socialsignin.spring.data.dynamodb.core.DynamoDBTemplate.query(Class<T>,
    QueryRequest)`
    derjust committed Jan 17, 2018
    Configuration menu
    Copy the full SHA
    437d47a View commit details
    Browse the repository at this point in the history