View Source Ravix.Connection.ServerNode.Settings (ravix v0.7.0)

  • retry_on_failure: Automatic retry in retryable errors
  • retry_on_stale: Automatic retry when the query is stale
  • retry_backoff: Amount of time between retries (in ms)
  • retry_count: Amount of retries
  • http_client_name: Name of the Finch http client to use with this node,
  • not_allowed_stale_indexes: Indexes that cant be stale queried
  • stale_is_error: Treat stale as an error

Link to this section Summary

Link to this section Types

@type t() :: %Ravix.Connection.ServerNode.Settings{
  http_client_name: atom(),
  max_url_length: non_neg_integer(),
  not_allowed_stale_indexes: [String.t()],
  retry_backoff: non_neg_integer(),
  retry_count: non_neg_integer(),
  retry_on_failure: boolean(),
  retry_on_stale: boolean(),
  stale_is_error: boolean()
}

Link to this section Functions