Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
perf: Faster report exporting logic (frappe#21415)
* perf: Faster report exports to Excel Try exporting report with 100K rows, most likely it fails or takes a really long time. Root causes: - visible_idx was a list, lookups are SLOW AF when lists grow to 100k+ - visible_idx check is not required when I am exporting entire report. Test with 85,000 rows. | | Before | After | Improvement | | --- | --- | --- | --- | | Export | 25.99 | 0.77 | ~33x faster |
- Loading branch information