I am learning how to benchmark two implementations in the controller/view. They are doing th e same thing, but one is done in view and another in controller. The code is shown below. My questions are:
- is it possible to measure the taken for the same action to render 100 times in one go?
- is my current benchmarking correctly measuring the combination of view + controller times?
- is there any better way to do this?
```
def sort_in_view
self.class.benchmark("$sort in view") do
@regions = Region.all
respond_to do |format|
format.html
end
end
end
def sort_in_controller
self.class.benchmark("$sort in controller") do
@regions = {}
Region.all.each do |r|
@regions[r] = r.countries.order_by_name
end
respond_to do |format|
format.html
end
end
end