Created
January 27, 2019 21:24
-
-
Save Bajena/150199d7b357ca99a9ddef7fb968ad8a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
users = posts.map { |post| post.user_lazy } | |
users.each { |user| puts "#{user.name}" } # SELECT * FROM users WHERE id IN (1, 2, 3) | |
users.each { |user| puts "#{user.address}" } # Pobierze użytkowników z cache'u |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment