Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6366525
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T00:25:58+00:00 2026-05-25T00:25:58+00:00

I am assigning an entire user object to be held in the session…Is this

  • 0

I am assigning an entire user object to be held in the session…Is this bad? How does rails store session data? I have a feeling this is a bad idea. Should I just store the user_id in the session?

module SessionsHelper
  def sign_in(user)
    session[:user] = user
  end

  def current_user
    session[:user]
  end

  def sign_out
    session[:user] = nil
  end
end

EDIT (I think this is better)

module SessionsHelper
  def sign_in(employee)
    session[:employee_id] = employee.id
    @employee = employee
  end

  def current_employee
    if session[:employee_id]
      @employee||=Employee.first(session[:employee])
    end
  end

  def sign_out
    session[:employee_id] = nil
    @employee = nil
  end
end
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T00:25:58+00:00Added an answer on May 25, 2026 at 12:25 am

    The default session storage is CookieStore, which has a 4 KB size limit. So depending on the size of your user object, this could be a bad idea. You may not be able to fit all of the information in the cookie, especially given other content may be stored in the cookie.

    Also, I’d recommend putting as little information as you can get away with in the cookie session to lower the size of your user’s requests/responses. The cookies will be sent over with each new request/response, at least until you nil them out, so it adds to the overall size of each.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

At assigning one field to another, does the C# just copy data over, or
Does assigning the attribute Name have any impact on objects in XAML? All of
When assigning a type casted array to codeigniter's session, I get this error: A
Does assigning an unused object reference to null in Java improve the garbage collection
I am assigning to an ImageView contacts images using this code: mPhotoView = (ImageView)
I have a problem when assigning functions to the click event of a button
I have an heterogeneous tableView with an entire section made up of UITableViewCells with
After assigning this: window.onload = initfunction; I want to append the AJAX cross domain
I am assigning a datatable with multiple columns and zero rows to WPF data-grid.
after assigning loaded XML data to an array of objects, i would like to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.