SDK
SDK C# v2.x
2

NextAsync #

Advances through the search results and returns the next page of items.

Arguments #

Copied to clipboard!
public async Task<SearchResults> NextAsync()

Resolve #

Resolves to a SearchResults object, or to null if no more pages are available.

Throw #

This method throws an exception if:

  • No pagination strategy can be applied (see below)
  • If invoking it would lead to more than 10 000 items being retrieved with the from/size strategy

Pagination strategies #

Depending on the arguments given to the initial search, the next method will pick one of the following strategies, by decreasing order of priority.

Strategy: scroll cursor #

If the original search query is given a scroll parameter, the next method uses a cursor to paginate results.

The results from a scroll request are frozen, and reflect the state of the index at the time the initial search request.
For that reason, this method is guaranteed to return consistent results, even if documents are updated or deleted in the database between two pages retrieval.

This is the most consistent way to paginate results, however, this comes at a higher computing cost for the server.

Copied to clipboard!
JArray documents = new JArray();
for (int i = 0; i < 100; i++) {
  JObject documentBody = new JObject {
    { "category", "suv" }
  };
  documents.Add(
    new JObject {
      { "_id", $"suv_no{i}" },
      { "body", documentBody }
    }
  );
}
await kuzzle.Document.MCreateAsync(
  "nyc-open-data",
  "yellow-taxi",
  documents,
  waitForRefresh: true);
SearchOptions options = new SearchOptions();
options.Scroll = "1m";
options.Size = 10;
SearchResults results = await kuzzle.Document.SearchAsync(
  "nyc-open-data",
  "yellow-taxi",
  JObject.Parse(@"{ query: { match: { category: 'suv' } } }"),
  options);
// Fetch the matched items by advancing through the result pages
JArray matched = new JArray();
while (results != null) {
  matched.Merge(results.Hits);
  results = await results.NextAsync();
}
Console.WriteLine(matched[0]);
/*
  { _id: 'suv_no1',
    _score: 0.03390155,
    _source:
      { _kuzzle_info:
        { author: '-1',
          updater: null,
          updatedAt: null,
          createdAt: 1570093133057 },
        category: 'suv' } }
*/
Console.WriteLine($"Successfully retrieved {matched.Count} documents")

Strategy: sort / size #

If the initial search contains sort and size parameters, the next method retrieves the next page of results following the sort order, the last item of the current page acting as a live cursor.

To avoid too many duplicates, it is advised to provide a sort combination that will always identify one item only. The recommended way is to use the field _uid which is certain to contain one unique value for each document.

Because this method does not freeze the search results between two calls, there can be missing or duplicated documents between two result pages.

This method efficiently mitigates the costs of scroll searches, but returns less consistent results: it's a middle ground, ideal for real-time search requests.

Strategy: from / size #

If the initial search contains from and size parameters, the next method retrieves the next page of result by incrementing the from offset.

Because this method does not freeze the search results between two calls, there can be missing or duplicated documents between two result pages.

It's the fastest pagination method available, but also the less consistent, and it is not possible to retrieve more than 10000 items using it.
Above that limit, any call to next throws an Exception.

Copied to clipboard!
JArray documents = new JArray();
for (int i = 0; i < 100; i++) {
  JObject documentBody = new JObject {
    { "category", "suv" }
  };
  documents.Add(
    new JObject {
      { "_id", $"suv_no{i}" },
      { "body", documentBody }
    }
  );
}
await kuzzle.Document.MCreateAsync(
  "nyc-open-data",
  "yellow-taxi",
  documents,
  waitForRefresh: true);
SearchOptions options = new SearchOptions();
options.From = 1;
options.Size = 5;
SearchResults results = await kuzzle.Document.SearchAsync(
  "nyc-open-data",
  "yellow-taxi",
  JObject.Parse(@"{ query: { match: { category: 'suv' } } }"),
  options);
// Fetch the matched items by advancing through the result pages
JArray matched = new JArray();
while (results != null) {
  matched.Merge(results.Hits);
  results = await results.NextAsync();
}
Console.WriteLine(matched[0]);
/*
  { _id: 'suv_no1',
    _score: 0.03390155,
    _source:
      { _kuzzle_info:
        { author: '-1',
          updater: null,
          updatedAt: null,
          createdAt: 1570093133057 },
        category: 'suv' } }
*/
Console.WriteLine($"Successfully retrieved {matched.Count} documents")