go-london-user-group-archive / hacknights

https://go-london-user.group
0 stars 0 forks source link

Fast and simple csv parser #8

Open mjgarton opened 7 years ago

mjgarton commented 7 years ago

We would like to create a faster (than the std library) csv parser, that prefers performance to features, and only cares about single byte character sets.

oskanberg commented 7 years ago

go-fuzz may be useful for you here: https://github.com/dvyukov/go-fuzz

See here for an example of how it was used to test the regular csv package: https://github.com/dvyukov/go-fuzz/tree/master/examples/csv

mjgarton commented 7 years ago

I'm continuing the implementation in its own repo here https://gitlab.com/quickparse/csv

rberenguel commented 7 years ago

@mjgarton @oskanberg my "lame" implementation is available here (not much to see, it's basically the standard library): https://github.com/rberenguel/quicklamecsv