cdrs 2.2.0

Cassandra DB driver written in Rust
Documentation
1
2
3
4
5
6
7
# CDRS examples

- [`crud_operations.rs`]./crud_operations.rs demonstrates how to create keyspace, table and user defined type. As well basic CRUD (Create, Read, Update, Delete) operations are shown;
- [`multiple_thread.rs`]./multiple_thread.rs shows how to use CDRS in multi thread applications;
- [`paged_query.rs`]./multiple_thread.rs uncovers query paging;
- [`prepare_batch_execute.rs`]./prepare_batch_execute.rs provides an example of query preparation and batching;
- [`server_events.rs`]./server_events.rs illustrates a process of server events (create table, schema change etc.) listening.