You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 26, 2022. It is now read-only.
I have a 4MB xlsx file that I'm trying to open. This would normally be easy to load, however it has a lot of unique strings because it's basically a catalog with 4000 rows. And there lays the problem, its storage strategy uses shared strings.
I have my timeout set to 60s and it isn't enough time.
Is there a way to modify this library and get this file to open and stream within 3 seconds without manually inlining the file's strings first?
The only thing I can think of is to build the cache table on the fly but I'm not familiar enough with the spreadsheet format to know if this will cause more trouble than its worth.
I have a 4MB xlsx file that I'm trying to open. This would normally be easy to load, however it has a lot of unique strings because it's basically a catalog with 4000 rows. And there lays the problem, its storage strategy uses shared strings.
I have my timeout set to 60s and it isn't enough time.
Is there a way to modify this library and get this file to open and stream within 3 seconds without manually inlining the file's strings first?
The only thing I can think of is to build the cache table on the fly but I'm not familiar enough with the spreadsheet format to know if this will cause more trouble than its worth.