Fast Csv reader which performs very well.
First, create a Csv
, either from a file or from a BufRead
reader.
```rust extern crate quick_csv;
fn main() { let csv = quickcsv::Csv::fromfile("test.csv").unwrap(); for row in csv.into_iter() { // work on csv row ... } } ```
Row
is on the other hand provides 3 methods to access csv columns:
- columns
:
- iterator over columns.
- Iterator item is a &str
, which means you only have to parse()
it to the needed type and you're done
rust
let mut cols = row.columns();
let fifth = cols.nth(5).unwrap().parse::<f64>();
println!("Doubled fifth column: {}", fifth * 2.0);
decode
:
Decodable
struct, a-la rust-csv.rust
if let Ok((col1, col2, col3)) = rust::decode::<(String, u64, f64)>() {
println!("col1: '{}', col2: {}, col3: {}", col1, col2, col3);
}
bytes_columns
:
columns
but columns are of type &[u8]
, which means you may want to convert it to &str firstcolumns
is minimal, use it only if you really need to as it is less convenientI mainly benchmarked this to rust-csv, which is supposed to be already very fast.
I tried to provide similar methods even if I don't have raw
version.
``` quick-csv test bytesrecords ... bench: 3,955,041 ns/iter (+/- 95,122) = 343 MB/s test decodedrecords ... bench: 10,133,448 ns/iter (+/- 151,735) = 133 MB/s test str_records ... bench: 4,419,434 ns/iter (+/- 104,107) = 308 MB/s
rust-csv (0.14.3) test byterecords ... bench: 10,528,780 ns/iter (+/- 2,080,735) = 128 MB/s test decodedrecords ... bench: 18,458,365 ns/iter (+/- 2,415,059) = 73 MB/s test rawrecords ... bench: 6,555,447 ns/iter (+/- 830,423) = 207 MB/s test stringrecords ... bench: 12,813,284 ns/iter (+/- 2,324,424) = 106 MB/s ```
When writing this, quick-csv is the fastest csv on csv-game
MIT