Tagged Questions

2
votes
0answers
40 views

Is there a Grails plugin for detecting N+1 fetching (similar to the Rails bullet gem)?

I recently learned about the Rails "bullet" gem that addresses the N+1 problem and determines when your app should or should not use eager fetching. Apparently it checks at runtime on the occurrence ...
0
votes
2answers
738 views

Grails GORM Domain class relationship

Grails 1.1.1 Goovy 1.5.7 In a relationship such this: Author 1 -- n Book n -- 1 Publisher Defined in Grails: class Author { String firstName String lastName static hasMany = [books: ...