Can someone speak to the difference between the two routes shown, and why exactly one is significantly more performant than the other?<p>e.g.<p>link_to 'hello', hello_index_url<p>vs.<p>link_to 'hello', controller: 'hello', action: 'index'<p>The fact that the first resolves orders of magnitude faster than the second seems counter intuitive.