Search code examples
eager-loadingraiseglobalize2

Eager loading for globalize2 translations


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?


Solution

  • Solved with

    @answers = @issue.answers.all(:include => :translations)