https://bz.apache.org/bugzilla/show_bug.cgi?id=61630
Daniel <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |NEW --- Comment #4 from Daniel <[email protected]> --- profiling the large .xlsx file didn't mark your mentioned private methods as hotspots. further profiling marked the private method indexOfElementInComplexType as bottleneck. This because of many calls performing the sort. Introducing a Cache - just a hashmap - storing the index for an entry minimizes the operations on the DOM. See attached my proposed patch. It significantly Speeds up the Export for large .xlsx -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
