Skip to content

Instantly share code, notes, and snippets.

@nishantmodak
Created July 5, 2013 09:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nishantmodak/5933461 to your computer and use it in GitHub Desktop.
Save nishantmodak/5933461 to your computer and use it in GitHub Desktop.
1.9.3p362 :001 > Line.cached_foreign(1)
Line Load (1.1ms) SELECT "lines".* FROM "lines" WHERE "lines"."foreign_id" = 1
=> [#<Line id: 1, no: 1, foreign_id: 1, created_at: "2012-09-28 09:18:14", updated_at: "2012-09-28 09:18:14">, #<Line id: 3, no: 3, foreign_id: 2, created_at: "2012-09-28 09:25:41", updated_at: "2012-09-28 09:25:41">, #<Line id: 4, no: 4, foreign_id: 2, created_at: "2012-09-28 09:26:00", updated_at: "2012-09-28 09:26:00">]
1.9.3p362 :002 > Line.cached_foreign(1)
Line Load (1.6ms) SELECT "lines".* FROM "lines" WHERE "lines"."foreign_id" = 1
=> [#<Line id: 1, no: 1, foreign_id: 1, created_at: "2012-09-28 09:18:14", updated_at: "2012-09-28 09:18:14">, #<Line id: 3, no: 3, foreign_id: 2, created_at: "2012-09-28 09:25:41", updated_at: "2012-09-28 09:25:41">, #<Line id: 4, no: 4, foreign_id: 2, created_at: "2012-09-28 09:26:00", updated_at: "2012-09-28 09:26:00">]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment