Skip to content

Commit

Permalink
Added benchmarks for files of 1000 and 10000
Browse files Browse the repository at this point in the history
  • Loading branch information
doug-martin committed Feb 14, 2020
1 parent c0d8f72 commit 22e4fb7
Show file tree
Hide file tree
Showing 8 changed files with 22,053 additions and 8 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ There are three packages published from this repo.
Exposes both formatting and parsing methods in a single package, use this if you need to parse and format files.

* [Docs](./packages/fast-csv/README.md)
* [Benchmarks](./examples/benchmark/README.md)
* [JavaScript Examples](./examples/fast-csv-js/README.md)
* [TypeScript Examples](./examples/fast-csv-ts/README.md)

Expand Down
14 changes: 14 additions & 0 deletions examples/benchmark/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
## Benchmark Results

|Type|Row Count|No. Runs|Avg|
|-|-|-|-|
|nonquoted|1000|5|15ms|
|nonquoted|10000|5|62ms|
|nonquoted|20000|5|102.2ms|
|nonquoted|50000|5|259ms|
|nonquoted|100000|5|513ms|
|quoted|1000|5|10.8ms|
|quoted|10000|5|70.8ms|
|quoted|20000|5|144.2ms|
|quoted|50000|5|356.6ms|
|quoted|100000|5|712.2ms|

0 comments on commit 22e4fb7

Please sign in to comment.