Skip to content

Instantly share code, notes, and snippets.

View thecodesmith's full-sized avatar

Brian Stewart thecodesmith

  • Jamf
  • United States
View GitHub Profile

Notes on Advanced GORM - Burt Beckwith on infoq.com

GORM Collections

Don't use collections (for large collections) Instead of using GORM collections:

class Library {
    String name

static hasMany = [visits: Visit]