What is the best way to clear a session variable in rails? What is the best way to clear a session variable in rails? ruby-on-rails ruby-on-rails

What is the best way to clear a session variable in rails?


session.delete(:message)

In general, session variable is SessionHash object, which is inherited from hash.