Another newbie basic question. Here is a made up example:
I will have a 5 x 5 table display with numbers 11, 21, 31, 41, 51, in
the first row numbers 12, 22, 23, 24, 25 in the second row etc.
The table boxes will display the number of the parking slot and the name
of the car parked there from a hash I prepared from my car model in the
controller.
So each cell would have for example:
<%=h @parking_lot_hash[11] if @parking_lot_hash[11]%>
I could do that twenty five times and hardwire the rhtml form…
or I could achieve this in my view with:
~ <%= space_num %> ~ <%=h @parking_lot_hash[space_num] if @parking_lot_hash[space_num] %> |
<% end %>
The first way would be 25 lines of text, compared to the 7 in the
second.
But the second makes the computer think harder? And puts more logic in
the view?
If that table was going to be reloaded 7 times a minute by users
working on manipulating where cars were parked, would that tilt things
to the verbose first solution?
Do servers calculate this stuff so effortlessly that I shouldn’t even
begin to worry about it?