We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To replicate:
The file should be around 50Mb.
Now, with a new C# .Net 6.0 console project, load the file using the library as below:
using (FastExcel.FastExcel fastExcel = new FastExcel.FastExcel(new FileInfo(filepath), true)) { var sheet = fastExcel.Read(1); sheet.Read(); }
In DEBUG mode, it consumes more than 12 Gb of memory just to read 4000*4000 values! (And it took almost 2 minutes to read on Lenovo P1 Gen 2)
By my calculation, even assume those numbers are stored as double (8 bytes), it shouldn't take so much memory: $400040008/1024^3 = 0.1192$
Thanks!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
To replicate:
The file should be around 50Mb.
Now, with a new C# .Net 6.0 console project, load the file using the library as below:
In DEBUG mode, it consumes more than 12 Gb of memory just to read 4000*4000 values! (And it took almost 2 minutes to read on Lenovo P1 Gen 2)
By my calculation, even assume those numbers are stored as double (8 bytes), it shouldn't take so much memory: $400040008/1024^3 = 0.1192$
Thanks!
The text was updated successfully, but these errors were encountered: