65001

Results 3 issues of 65001

I'm setting up a `StreamConsumer` and I'm doing: ```rust let consumer : StreamConsumer = ClientConfig::new() .set("compression.type", "snappy") .set("security.protocol", "SASL_PLAINTEXT") .set("sasl.mechanisms", "SCRAM-SHA-512") ... .create() .unwrap() ``` I'm using version 0.36 with...

Added simple trig functions such as `sin` and `cos`. Added ability for the program to take input from the user directly from the CLI. Added argument parsing using clap. Added...

When you look at [the redis-rs docs](https://docs.rs/redis/0.29.0/redis/sentinel/index.html) for sentinel you see: ```rust use redis::sentinel::SentinelClientBuilder; use redis::{ConnectionAddr, TlsCertificates}; let nodes = vec![ConnectionAddr::Tcp(String::from("redis://127.0.0.1"), 6379), ConnectionAddr::Tcp(String::from("redis://127.0.0.1"), 6378), ConnectionAddr::Tcp(String::from("redis://127.0.0.1"), 6377)]; let mut builder =...

documentation
A-redis