Vote #80225
完了Speed up workflow edit page rendering
0%
説明
Currently the list of WorkflowTransitions @workflows@ is scanned twice (@#detect@ in @app/views/workflows/_form.html.erb@, @select@ in @app/helpers/workflows_helper.rb@) for each possible Status pair shown on the workflow edit page (the number of status pairs is itself quadratic with the number of statuses). This leads to the rendering time for this page to be quadratic with the number of Status pairs.
The patch provided in the next update calculates all required data only once for the page instead of once for each Status pair. In a test with 90 issue statuses in development mode on a laptop the total rendering time for the workflow edit page was changed from ~103 seconds before the patch to ~2,5s with the patch.
journals
Here is the patch.
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Setting the target version to 4.1.0.
--------------------------------------------------------------------------------
Committed the patch. It improves the rendering speed significantly. Thanks!
--------------------------------------------------------------------------------