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
I am using Julia 0.6.4 and the ExcelReaders package to read several sheets from a very large .xlsx file.
Thus, instead of repeating foo_n = readxlsheet("data.xlsx", "sheetname_n") for n times, it seemed to me to be more convenient and faster to use:
Which, if I got it right, keeps the whole large file "data.xlsx" in memory, so to permit a faster access whenever e.g. a new sheet needs to be read.
However, how about adding a feature to close such a large file (once not needed anymore in the program)? It could be something like: closexl("data.xlsx").
I presume that by freeing up some memory, the latter could be used to run faster a very long script for instance.
Thank you in advance!
The text was updated successfully, but these errors were encountered:
Hello,
I am using Julia 0.6.4 and the
ExcelReaders
package to read several sheets from a very large .xlsx file.Thus, instead of repeating
foo_n = readxlsheet("data.xlsx", "sheetname_n")
for n times, it seemed to me to be more convenient and faster to use:Which, if I got it right, keeps the whole large file
"data.xlsx"
in memory, so to permit a faster access whenever e.g. a new sheet needs to be read.However, how about adding a feature to close such a large file (once not needed anymore in the program)? It could be something like:
closexl("data.xlsx")
.I presume that by freeing up some memory, the latter could be used to run faster a very long script for instance.
Thank you in advance!
The text was updated successfully, but these errors were encountered: