Last active
August 29, 2015 14:18
-
-
Save saidM/e38f6d572885db0c61d2 to your computer and use it in GitHub Desktop.
lazy loading
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
| books = Book.all.limit(10) # Charge les books présents dans notre database (1 requête SQL) | |
| books.each do |book| | |
| puts book.author.name # Pour chaque livre, effectue une requête SQL pour récupérer le nom de l'auteur | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment