class RodaSessionMiddleware::SessionHash

def exists?

If this is false, then the session was set to an empty hash.
Return whether the session cookie already exists.
def exists?
  load!
  req.env.has_key?('roda.session.serialized')
end