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

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.

42226 次浏览
session.delete(:message)

通常,会话变量是从 hash 继承的 SessionHash对象。