This crate offers a non-blocking Redis Client for no_std targets. Both RESP2 and RESP3 protocol are supported.
```rust use core::str::FromStr; use embeddednal::SocketAddr; use stdembeddednal::Stack; use stdembeddedtime::StandardClock; use embeddedredis::network::ConnectionHandler;
let mut stack = Stack::default(); let clock = StandardClock::default();
let serveraddress = SocketAddr::fromstr("127.0.0.1:6379").unwrap(); let mut connectionhandler = ConnectionHandler::resp2(serveraddress); let client = connection_handler.connect(&mut stack, Some(&clock)).unwrap();
let future = client.set("key", "value").unwrap(); let response = future.wait().unwrap(); ```
Any form of support is greatly appreciated. Feel free to create issues and PRs. See DEVELOPMENT for more details.
Licensed under either of
Each contributor agrees that his/her contribution covers both licenses.