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
Hi,
My test case is a xlsx file which has 1,000,000 rows and 97M. I use below code to parse it. return StreamingReader.builder() .rowCacheSize(50) .bufferSize(1024) .open(file); (currenct version is 2.1.0)
and the highest memory footprint is 387M, I analyse it using Jprofiler. It shows the ZipPackage object is the major key.
Is there anyway to avoid this or will enhance this next release ? (currenct version is 2.1.0),
Thanks in advance for your response
The text was updated successfully, but these errors were encountered:
Hi,
My test case is a xlsx file which has 1,000,000 rows and 97M. I use below code to parse it.
return StreamingReader.builder() .rowCacheSize(50) .bufferSize(1024) .open(file);
(currenct version is 2.1.0)and the highest memory footprint is 387M, I analyse it using Jprofiler. It shows the ZipPackage object is the major key.
Is there anyway to avoid this or will enhance this next release ? (currenct version is 2.1.0),
Thanks in advance for your response
The text was updated successfully, but these errors were encountered: