Using rails presenters - memoizable getting deprecated in 3.1 - use ||= instead?
Issue: To avoid creating multiple objects or multiple queries when possible. I am using Presenters with rails as a Best Practice. I am following advice that says that it would be good to use "extend ActiveSupport.Memoizable" (and then memoize :method(s) to use them) over setting up items with @the_record = record ||= @record style because of a couple of issues - false or nil not getting stored so the query gets called again and also that memoizable uses the cache better (i.e. uses it!). However I see that memoizable is getting deprecated in rails 3.1 Notes i github under carrierwave and with