Reputation: 2847
i have 2 models - Issue and Answers (issue has many answers) and both have translations with globalize2. Every time i attempting to load Issue with answers via
@issue = Issue.find(params[:id])
@answers = @issue.answers
causes loading of translations for each Answer (1 sql query per Answer).
How can i optimize it?
Upvotes: 0
Views: 296
Reputation: 2847
Solved with
@answers = @issue.answers.all(:include => :translations)
Upvotes: 0