pub fn new_connection_manager(
connections_per_operator: Option<u32>,
) -> Arc<ConnectionManager>Expand description
Creates a new shareable ConnectionManager.
connections_per_operator controls per-operator connection pooling:
None keeps a single connection per operator (suitable for almost every
deployment); Some(n) opens n connections per operator and balances
requests across them.