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
What happens to the memory allocated for an object when the option: constant_memory: true or false is set ? The file is not actually stored on disk If the file path is specified in initialize? With constant_memory true - meaning it is stored in RAM? In theory, stored data in an object (data table) should be cleared when an application error occurs.
defsample(file_path,collection)workbook=FastExcel.open(file_path,constant_memory: true)sheet=workbook.add_worksheet(self.class::MODEL_NAME)collection.eachdo |object|
sheet.append_row(object)endraiseStandartErrorensure#What does happens to the memory of the fast _excel objectend
The text was updated successfully, but these errors were encountered:
What happens to the memory allocated for an object when the option: constant_memory: true or false is set ? The file is not actually stored on disk If the file path is specified in initialize? With constant_memory true - meaning it is stored in RAM? In theory, stored data in an object (data table) should be cleared when an application error occurs.
The text was updated successfully, but these errors were encountered: