diff options
author | xuri <xuri.me@gmail.com> | 2022-01-11 00:24:24 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2022-01-11 00:31:11 +0800 |
commit | 891e5baac1a6ac67123fbc6a68f801720882b8ec (patch) | |
tree | caba6b482cf29539060ad70d95465cd626108ed2 /templates.go | |
parent | 2245fccca0beb25a1bf309a1c9cbd273512f125a (diff) |
ref #1096, reduce memory usage by about 50% for large data spreadsheet
Diffstat (limited to 'templates.go')
-rw-r--r-- | templates.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/templates.go b/templates.go index 20ef31d..81b2c20 100644 --- a/templates.go +++ b/templates.go @@ -30,6 +30,7 @@ const ( defaultXMLPathSharedStrings = "xl/sharedStrings.xml" defaultXMLPathStyles = "xl/styles.xml" defaultXMLPathWorkbook = "xl/workbook.xml" + defaultTempFileSST = "sharedStrings" ) const templateDocpropsApp = `<Properties xmlns="http://schemas.openxmlformats.org/officeDocument/2006/extended-properties" xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes"><TotalTime>0</TotalTime><Application>Go Excelize</Application></Properties>` |