class Post < ActiveRecord::Base has_many :authors attr_accessor :post_authors memoize :post_authors def post_authors process_post_authors end private def process_post_authors # do some expensive stuff here end end