I have a long complicated home page where a company is shown, for each project, information about recent events. The idea is that they have a kind of data-heavy information center from which they can monitor all activity.
I've had trouble getting this page to perform well - two days ago local load times were 4.5s(!) and they are currently at ~2.5s(!). The most alarming part about this horrible performance is that these are the load times with only 3 projects and practically no events. Performance on the live app is slightly better, but not nearly enough.
Purpose: Improve load time on home page
Here are the current queries.
# controller
@projects = @company.projects.order("project_title ASC").includes({:events => :owner}).search(params[:search], params[:page])
# view
@projects.each do |project|
@events = project.events.where(:active => true).includes(:owner).order("priority DESC")
end
Removing the .where(:active => true).includes(:owner).order("priority DESC") is shaving off 1.1 seconds on an app with only 3 projects and 4 events in total.
How should these queries be written optimally? Should indexing play a role in this case?
I've been playing around with database indexes for the looped query in the view but I haven't gotten one to cut down the time yet.
logger.debugs and there is nothing in the logs between the two! Here's the load report:Completed 200 OK in 1480ms (Views: 310.7ms | ActiveRecord: 19.8ms). How come load is 1.5s when Views + AR =~ 330ms... – sscirrus Mar 19 '11 at 15:26project.events.where()turn into and how many trips through the.eachdo you make? – mu is too short Mar 19 '11 at 15:56