module Roda::RodaPlugins::Sessions::RequestMethods
def session
this method stores the session in 'rack.session' in the request environment,
For maximum compatibility with other software that uses rack sessions,
trying to access the session directly through the request environment.
plugin, you must call this method to get the session, instead of
Load the session information from the cookie. With the sessions
def session @env['rack.session'] ||= _load_session end