Originally from the User Slack
@erik404: Hi all! New user here! I’ve been using the ScyllaDB Rust driver since a couple of months now in a project that does algorithm optimizations. Before I had build my own storage system that managed data but eventually this failed after we reached 10 million+ simulations/hour.
So far ScyllaDB seems to hold up very well! And I am pleased with the state of the driver so far! Thanks for all the hard work!
I had some issues with (de)serializing rust_decimal::Decimal to ScyllaDB and back without having to write boiler code all the time so I made a Crate that wraps that Decimal in a DecimalCql that implements (De)SerializeValue so I can easily use (De)SerializeRow on my structs.
I am not a frequent opensource contributor, or someone who works in large teams of programmers at all. So all feedback is welcome!
https://crates.io/crates/rust_decimal_cql/
@Felipe_Cardeneti_Mendes: oh nice! @Wojciech_Przytuła maybe we could make its consumption easier as a feature somehow?
@Guy: Interesting, thanks!