I have a rails application and some huge xlsx files to generate and, although the axlsx_rails works really well in generating these files, when the number of lines surpasses 60000 there is a long time waiting until the download window pops up.
I was suggested to use delayed_job. As a beginner, I barely understand how delayed_job works in "normal" way, when you have a method to call `.delay` on, but in this case the gem do all the work, so how could I put it on a delayed job? or in other words, what should I call the `.delay` on?
My whole implementation of axlsx_rails was done as in the following tutorial: https://www.sitepoint.com/generate-excel-spreadsheets-rails-axlsx-gem/