Crates.io | cdrs-tokio |
lib.rs | cdrs-tokio |
version | 8.1.3 |
source | src |
created_at | 2020-11-17 06:46:58.507075 |
updated_at | 2024-04-25 13:19:25.027811 |
description | Async Cassandra DB driver written in Rust |
homepage | https://github.com/krojew/cdrs-tokio |
repository | https://github.com/krojew/cdrs-tokio |
max_upload_size | |
id | 313199 |
size | 471,324 |
CDRS is production-ready Apache Cassandra driver written in pure Ru* *s**t. Focuses on providing high level of configurability to suit most use cases at any scale, as its Java counterpart, while also leveraging the safety and performance of Rust.
Due to high configurability of CDRS, the performance will vary depending on use case. The following benchmarks have been made against the latest (master as of 03-12-2021) versions of respective libraries (except cassandra-cpp: 2.16.0) and protocol version 4.
cdrs-tokio-large-pool
- CDRS with node connection pool equal to double
of physical CPU corescdrs-tokio-small-pool
- CDRS with a single connection per nodescylladb-rust-large-pool
- scylla
crate with node connection pool equal to
double of physical CPU coresscylladb-rust-small-pool
- scylla
crate with a single connection per nodecassandra-cpp
- Rust bindings for Datastax C++ Driver, running on multiple
threads using Tokiogocql
- a driver written in GoKnowing given use case, CDRS can be optimized for peak performance.
This example configures a cluster consisting of a single node without authentication, and uses round-robin load balancing. Other options are kept as default.
use cdrs_tokio::cluster::session::{TcpSessionBuilder, SessionBuilder};
use cdrs_tokio::cluster::NodeTcpConfigBuilder;
use cdrs_tokio::load_balancing::RoundRobinLoadBalancingStrategy;
use cdrs_tokio::query::*;
#[tokio::main]
async fn main() {
let cluster_config = NodeTcpConfigBuilder::new()
.with_contact_point("127.0.0.1:9042".into())
.build()
.await
.unwrap();
let session = TcpSessionBuilder::new(RoundRobinLoadBalancingStrategy::new(), cluster_config)
.build()
.await
.unwrap();
let create_ks = "CREATE KEYSPACE IF NOT EXISTS test_ks WITH REPLICATION = { \
'class' : 'SimpleStrategy', 'replication_factor' : 1 };";
session
.query(create_ks)
.await
.expect("Keyspace create error");
}
This project is licensed under either of
at your option.