In ruby on rails when doing session[:foo] = nil it leaves an entry named :foo in the session object. How can you get rid of that single entry from the session object?
|
|
||||
|
|
|
Actually there is a way to get delete a value from the session. Like RichH said the session variable is a CGI::Session instance. When enter something like EDIT: There is a data instance variable in the CGI::Session class. If you go to the docs and look at the source code for the So to delete
Now to delete it:
Once you do this the there should be no more foo in your session variable. |
|||||||||||||
|
|
It looks like the simplest version works. All stores (Cookie, File, ActiveRecord, ...) use
|
|||
|
|
As the Session is a Ruby CGI::Session and not a Hash, calling delete will actually delete session. Delete takes no parameters - this is my you're getting the "wrong number of arguments (1 or 0)" message when you try what hyuan suggests. The generally accepted way to clear a session entry is with session[:foo] = nil as you suggest. It is far from ideal, but statements like session[:foo].nil? will behave as expected. I really wish it behaved like a normal Hash ... but it doesn't. |
|||
|
|