| Short description: |
A pure-C CSV parser. |
| Category: |
Library/File |
| Status: |
alpha |
| Created: |
2007-09-27 01:30:51 GMT |
| Last update: |
2007-09-27 01:31:59 GMT |
| Owner: |
Evan Weaver
(Projects of this owner) |
| Homepage: |
http://rubyforge.org/projects/fauna/ |
| Download: |
http://rubyforge.org/frs/?group_id=2835
|
| License: |
OpenSource |
| Dependency: |
|
| Description: |
A pure-C CSV parser. Only supports a constrained CSV
format right now: files only, no missing fields, no
quoted delimiters. CSVScan is better for most purposes.
Benchmark on 1,000,000 rows:
user system total real
Ccsv 1.700000 0.040000 1.740000 ( 1.847071)
CSVScan 2.080000 0.060000 2.140000 ( 2.169558)
LightCsv 11.950000 0.150000 12.100000 ( 12.406127)
FasterCSV 36.120000 0.380000 36.500000 ( 39.046713)
CSV 125.330000 1.060000 126.390000 (132.264997)
|