Reputation: 43919
session[:message] = nil
Is this is the best way to destroy a session variable.
Note: I don't want to clear all the session variables like reset_session
does.
Upvotes: 130
Views: 44475
Reputation: 7953
session.delete(:message)
In general, session variable is SessionHash
object, which is inherited from hash.
Upvotes: 267