For rendering a partial I can use
render 'partial_name'
or render partial: 'partial_name'
I came to know that render
is the shorthand syntax of render partial
and render will not accept additional local variables for the partial from this SO answer
I would like to know if there is any performance issue when using render
instead of render partial