cdrs icon indicating copy to clipboard operation
cdrs copied to clipboard

Cassandra DB native client written in Rust language. Find 1.x versions on https://github.com/AlexPikalov/cdrs/tree/v.1.x Looking for an async version? - Check WIP https://github.com/AlexPikalov/cdrs-a...

Results 34 cdrs issues
Sort by recently updated
recently updated
newest added

This is great software--helping out my project a ton! I noticed that the only time struct supported by IntoRustByName is time::Timespec. However, since 0.2.0, Timespec has been deprecated in the...

waits for publish

As of now `try_from_raw` works with `Row` and doesn't accept references. In this issue we need to provide such possibility.

enhancement
v2

I think it makes sense to create some helpers which would be able to convert a date into a proper `Value`. Generally, the approach is following `some_date` -> [`unisigned integer`](https://github.com/apache/cassandra/blob/trunk/doc/native_protocol_v4.spec#L850)...

I want to execute a page query with a paramaterized query, however I don't see a way to do it since it expects a String. This is the relevant code:...

Hi I am novice in Rust, and tried something like this: ``` use serde::{Serialize, Deserialize}; #[derive(Serialize, Deserialize, Debug, TryFromRow)] pub struct Data { #[serde(with = "my_blob")] pub hash: Blob }...

Thanks to @DoumanAsh a support of rustls was added. Now we need to document it: * provide an example * add a subpage to https://github.com/AlexPikalov/cdrs/tree/master/documentation

help wanted
easy-to-start
documentation

As mentioned on Reddit, I'm planning to add support for migrations for Cassandra in https://github.com/Keats/dbmigrate Would it be possible to add a method to cdrs to get a connection from...

enhancement

I know we just have got the cluster manager api up. the nodes can be brought up online or node can die. we can get those information via the server...

v2

Re-use https://github.com/AlexPikalov/cassandra-proto as a logic for Cassandra frames decoding/encoding

enhancement
in-progress

@AlexPikalov in this PR I've tried to make CDRS able to send the prepared statements to all pooled connections. I'm not well versed in rust, so you might probably find...