Search code examples
ruby-on-railsruby-on-rails-3authenticationremember-me

How to implement a "Remember Me" function in Rails 3?


What are the best practices to implement a "Remember Me" function in Rails 3 application ?

I store session information (session id + user id) in the database when user logs in, and I don't want to use any plugins at this moment.

Any pointers or code samples will be much appreciated.


Solution

  • Have been reading the Rails tutorial book and it has an implementation for Remember Me

    You can check for some hints (The implementation may be different from yours)

    http://ruby.railstutorial.org/book/ruby-on-rails-tutorial#sec:remember_me