Fast and Specialized Rust CSV Readers Using SIMD Instructions
github.com·10h·
Discuss: Hacker News
Flag this post

Rust simd-csv crate

Full documentation


The simd-csv crate provides specialized readers & writers of CSV data able to leverage SIMD instructions.

It has been designed to fit the xan command line tool’s requirements, but can be used by anyone to speed up CSV parsing.

Is is less flexible and user-friendly than the csv crate, so one should make sure the performance gain is worth it before going further.

This crate is not a port of simdjson branchless logic applied to CSV parsing. It uses a somewhat novel approach instead, mixing traditional state machine logic with [mem…

Similar Posts

Loading similar posts...