Reads in the current HTTP session map, and adds it to the :session key on
the request. If a :session key is added to the response by the handler, the
session is updated with the new value. If the value is nil, the session is
deleted.
The following options are available:
:store
An implementation map containing :read, :write, and :delete
keys. This determines how the session is stored. Defaults to
in-memory storage.
:root
The root path of the session. Anything path above this will not
be able to see this session. Equivalent to setting the cookie's
path attribute. Defaults to "/".
:cookie-name
The name of the cookie that holds the session key. Defaults to
"ring-session"
:cookie-attrs
A map of attributes to associate with the session cookie. Defaults
to {}.
Comments top
No comments for wrap-session. Log in to add a comment.