-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve parsing speed by manual implementing xml.Unmarshaller for som…
…e types. (#34) * Improve parsing speed by manual implementing xml.Unmarshaller for some types. Implementation made for types representing row and shared string. I've got around 25% speed improvement. Approaches taken from https://stackoverflow.com/a/61858457 * Fix up error messages, make private stuff, etc * Move file to remove 'util' from name - too generic! Co-authored-by: Douglas Parsons <[email protected]>
- Loading branch information
1 parent
461e4ef
commit 8e6e706
Showing
10 changed files
with
274 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
module github.com/thedatashed/xlsxreader | ||
|
||
go 1.15 | ||
|
||
require github.com/stretchr/testify v1.3.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.