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

Viewed 41865
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.

1 Answers
Related