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

  • 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
  • allow_stale_indexes: Indexes that can be stale queried

Link to this section Summary

Link to this section Types

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

Link to this section Functions