CDRS is Apache Cassandra driver written in pure Rust.
Add CDRS tokio to your Cargo.toml
file as a dependency:
toml
cdrs-tokio = "1.0"
```rust use cdrstokio::authenticators::NoneAuthenticator; use cdrstokio::cluster::session::{new as newsession}; use cdrstokio::cluster::{ClusterTcpConfig, NodeTcpConfigBuilder}; use cdrstokio::loadbalancing::RoundRobin; use cdrs_tokio::query::*;
fn main() { let node = NodeTcpConfigBuilder::new("127.0.0.1:9042", NoneAuthenticator {}).build(); let clusterconfig = ClusterTcpConfig(vec![node]); let nocompression = newsession(&clusterconfig, RoundRobin::new()).await.expect("session should be created");
let createks: &'static str = "CREATE KEYSPACE IF NOT EXISTS testks WITH REPLICATION = { \ 'class' : 'SimpleStrategy', 'replicationfactor' : 1 };"; nocompression.query(create_ks).await.expect("Keyspace create error"); } ```
This example configures a cluster consisting of a single node, and uses round robin load balancing and default r2d2
values for connection pool.
This project is licensed under either of
at your option.