Notes posted by stjernstrom
RSS feed
1 thank
expires_in option
@concept47 do you really need to check the fragment in the controller?
ActiveRecord will execute the query when its used
cars = Car.where(:colour => 'black') # No Query cars.each {|c| puts c.name } # Fires "select * from cars where ..."
“Lazy Loading” - http://m.onkey.org/active-record-query-interface