You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Parser now uses memory-mapped IO for reading from disk thanks to mio
CSV files are read in smaller chunks to reduce memory footprint (but parsing is significantly faster)
CSVReader::read_row() (and CSVReader::iterator) no longer blocks CSVReader::read_csv(), i.e. we can now simultaneously work on CSV data while reading more rows
Parser internals completely rewritten to use more efficient and easier to maintain/debug data structures
Fixed bug where single column files could not be parsed