class AuthorsController < ApplicationController # GET /authors/1 def show @author = Author.find(params[:id]) end end class CachedAuthorsController < ApplicationController # GET /cached_authors/1 def show @cached_author = CachedAuthor.find(params[:id]) end end