Hi, I wrote a simple benchmark comparing the execution times of my csv parser based on Parslet and Ruby's csv gem.
While the csv gem returned the result almost instantly, my parser took over 33 seconds on a large test file<https://github.com/circle/fastercsv/blob/master/test/test_data.csv> . Here is all the code: https://gist.github.com/1192215 As I plan to use my parser in a real application, but cannot do so if it is too slow, I took a look at the code by could not find anything that might explain the long execution time. Therefore I would be glad if someone could help me find this bottleneck. Thanks in advance! Stefan
