pancake-db-client 0.1.2

Rust client library for PancakeDB
Documentation

Crates.io

Pancake DB Client

Create a client instance via

use pancake_db_client::Client;
use std::net::{IpAddr, Ipv4Addr};
let client = Client::from_ip_port(
  IpAddr::V4(Ipv4Addr::new(127, 0, 0, 1)),
  3841,
);

You can then make API calls via its async API; e.g. let resp = client.api_write_to_partition(&req).await?;.

For detailed documentation of the client, see the docs.rs page.

For an end-to-end example, see the client runthrough.

For details about the API calls and what all their fields mean, see the API docs.