<% start = Time.now %> <% @tweets.each do |tweet| %> <% end %>
id replies_count in_reply_to.id in_reply_to.favorites_count
<%= tweet.id %> <%= (precount? || eager_count?) ? tweet.replies_count : tweet.replies.count %> <%= tweet.in_reply_to.try(:id) %> <%= tweet.in_reply_to.try(:favorites_count) %>
<% finish = Time.now %>

Loader: <%= loader %>

Time: <%= "%.1f" % ((finish - start) * 1000) %>ms

<% ApplicationController::AVAILABLE_LOADERS.each do |ld| %> <%= link_to_unless loader == ld, ld, url_for(loader: ld) %> <% end %>