Interface ListOption


public interface ListOption
Options for listing records.
  • Method Summary

    Static Methods
    Modifier and Type
    Method
    Description
    static ListOption
    PartitionKey(String partitionKey)
    PartitionKey overrides the partition routing with the specified `partitionKey` instead of the regular record key.
    static ListOption
    UseIndex(String secondaryIndexName)
    UseIndex let the users specify a different index to follow for the list operation
  • Method Details

    • PartitionKey

      static ListOption PartitionKey(String partitionKey)
      PartitionKey overrides the partition routing with the specified `partitionKey` instead of the regular record key.

      Records with the same partitionKey will always be guaranteed to be co-located in the same Oxia shard.

      Parameters:
      partitionKey - the partition key to use
      Returns:
      the ListOption.
    • UseIndex

      static ListOption UseIndex(String secondaryIndexName)
      UseIndex let the users specify a different index to follow for the list operation

      Note: The returned list will contain they primary keys of the records

      Parameters:
      secondaryIndexName - the name of the secondary index to use for the list operation
      Returns:
      the ListOption.