Class: CGI::Session::MemoryStore
- Inherits:
-
Object
- Object
- CGI::Session::MemoryStore
- Defined in:
- lib/cgi/session.rb
Overview
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.
Constant Summary collapse
- GLOBAL_HASH_TABLE =
:nodoc:
{}
Instance Method Summary collapse
-
#close ⇒ Object
Close session storage.
-
#delete ⇒ Object
Delete the session state.
-
#initialize(session, option = nil) ⇒ MemoryStore
constructor
Create a new MemoryStore instance.
-
#restore ⇒ Object
Restore session state.
-
#update ⇒ Object
Update session state.
Constructor Details
#initialize(session, option = nil) ⇒ MemoryStore
Create a new MemoryStore instance.
session
is the session this instance is associated with. option
is a list of initialisation options. None are currently recognized.
488 489 490 491 492 493 494 495 496 |
# File 'lib/cgi/session.rb', line 488 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 |
Instance Method Details
#close ⇒ Object
Close session storage.
A no-op.
515 516 517 |
# File 'lib/cgi/session.rb', line 515 def close # don't need to close end |
#delete ⇒ Object
Delete the session state.
520 521 522 |
# File 'lib/cgi/session.rb', line 520 def delete GLOBAL_HASH_TABLE.delete(@session_id) end |
#restore ⇒ Object
Restore session state.
Returns session data as a hash.
501 502 503 |
# File 'lib/cgi/session.rb', line 501 def restore GLOBAL_HASH_TABLE[@session_id] end |
#update ⇒ Object
Update session state.
A no-op.
508 509 510 |
# File 'lib/cgi/session.rb', line 508 def update # don't need to update; hash is shared end |