ExAliyunOts.batch_get

You're seeing just the function batch_get, go back to ExAliyunOts module for more information.
Link to this function

batch_get(instance, requests)

View Source

Specs

batch_get(instance(), requests :: list()) :: result()

Official document in Chinese | English

Example

import MyApp.TableStore

batch_get [
  get(table_name1, [[{"key1", 1}, {"key2", "1"}]]),
  get(
    table_name2,
    [{"key1", "key1"}],
    columns_to_get: ["name", "age"],
    filter: filter "age" >= 10
  )
]

The batch get operation can be considered as a collection of mulitple get/3 operations.