Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

A caching current user method call (See related posts)

A simple method that returns the current user and caches the result to reduce database hits. This assumes you're storing user information in User and that the current user is identified by the session variable user_id.
class ApplicationController < ActionController::Base
  def current_user
    session[:user_id] ? @current_user ||= User.find(session[:user_id]) : nil
  end
end

You need to create an account or log in to post comments to this site.


Click here to browse all 5147 code snippets

Related Posts