In-memory session storage class.
Implements session storage as a global in-memory hash. Session data will only persist for as long as the ruby interpreter instance does.
Create a new MemoryStore instance.
session is the session this instance is associated with.
option is a list of initialisation options. None are
currently recognised.
# File cgi/session.rb, line 457
def initialize(session, option=nil)
@session_id = session.session_id
unless GLOBAL_HASH_TABLE.key?(@session_id)
unless session.new_session
raise CGI::Session::NoSession, "uninitialized session"
end
GLOBAL_HASH_TABLE[@session_id] = {}
end
end
Close session storage.
A no-op.
# File cgi/session.rb, line 484
def close
# don't need to close
end
Delete the session state.
# File cgi/session.rb, line 489
def delete
GLOBAL_HASH_TABLE.delete(@session_id)
end
Commenting is here to help enhance the documentation. For example, sample code, or clarification of the documentation.
If you have questions about Ruby or the documentation, please post to one of the Ruby mailing lists. You will get better, faster, help that way.
If you wish to post a correction of the docs, please do so, but also file bug report so that it can be corrected for the next release. Thank you.