Performance: Root route
MEDIUM IMPACT
This affects the initial page load speed by determining which controller action and view render first when a user visits the base URL.
root to: 'static_pages#home'root to: 'heavy_controller#complex_action'| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Heavy root controller action | Many DOM nodes from complex view | Multiple reflows due to dynamic content | High paint cost from large content | [X] Bad |
| Static or cached root page | Minimal DOM nodes | Single reflow | Low paint cost with simple content | [OK] Good |