restore()
Restore session state from the session’s PStore file.
Returns the session state as a hash.
# File lib/cgi/session/pstore.rb, line 70 def restore unless @hash @p.transaction do @hash = @p['hash'] || {} end end @hash end