5个版本 (3个破坏性更新)

0.4.0 2022年1月4日
0.3.0 2021年10月5日
0.2.0 2021年9月30日
0.1.1 2021年1月26日
0.1.0 2021年1月26日

#597 in 异步

Download history • Rust 包仓库 109/week @ 2024-04-14 • Rust 包仓库 49/week @ 2024-04-21 • Rust 包仓库 50/week @ 2024-04-28 • Rust 包仓库 72/week @ 2024-05-05 • Rust 包仓库 68/week @ 2024-05-12 • Rust 包仓库 84/week @ 2024-05-19 • Rust 包仓库 71/week @ 2024-05-26 • Rust 包仓库 69/week @ 2024-06-02 • Rust 包仓库 80/week @ 2024-06-09 • Rust 包仓库 123/week @ 2024-06-16 • Rust 包仓库 220/week @ 2024-06-23 • Rust 包仓库 194/week @ 2024-06-30 • Rust 包仓库 336/week @ 2024-07-07 • Rust 包仓库 205/week @ 2024-07-14 • Rust 包仓库 111/week @ 2024-07-21 • Rust 包仓库 226/week @ 2024-07-28 • Rust 包仓库

每月下载 917
用于 2 crates

MIT 许可证

20KB
258 代码行

tourniquet

轻松地在提供相同服务的服务器之间进行轮询,发生错误时自动重新连接到下一个服务器。

此库通过以轮询方式连接到列表中的第一个可用的服务,使多个服务提供者(例如,服务器)具有弹性。如果由于某种原因任何提供者宕机,任何与其交互的尝试将自动重新连接到下一个提供者。

免责声明:此库不用于一组提供者之间的负载均衡!它将连接到 一个 提供者,并且只要该提供者处于活动状态,它将只使用该提供者。Tourniquet旨在提供弹性,而不是用于负载均衡。

示例

use async_trait::async_trait;
use std::{io::Error, net::IpAddr};
use tokio::{io::AsyncReadExt, net::TcpStream, sync::Mutex};
use tourniquet::{Connector, RoundRobin};

struct Conn(u16);

#[async_trait]
impl Connector<IpAddr, Mutex<TcpStream>, Error> for Conn {
    async fn connect(&self, src: &IpAddr) -> Result<Mutex<TcpStream>, Error> {
        let Conn(ref port) = self;
        TcpStream::connect((*src, *port)).await.map(Mutex::new)
    }
}

#[tokio::main]
async fn main() {
    let rr = RoundRobin::new(
        vec!["46.16.175.175".parse().unwrap(), "51.161.82.214".parse().unwrap()],
        Conn(6667),
    );

    let hello = rr.run(|sock| async move {
        let mut sock = sock.lock().await;
        let mut buf = [0; 50];
        sock.read_exact(&mut buf).await.map(|_| String::from_utf8(buf.to_vec()).unwrap())
    }).await.unwrap();

    assert!(hello.contains("libera.chat"));
}

许可证:MIT

依赖项

~2.3–4MB
~65K SLoC