Plug.Session (Plug v1.11.1) View Source

A plug to handle session cookies and session stores.

The session is accessed via functions on Plug.Conn. Cookies and session have to be fetched with Plug.Conn.fetch_session/1 before the session can be accessed.

The session is also lazy. Once configured, a cookie header with the session will only be sent to the client if something is written to the session in the first place.

When using Plug.Session, also consider using Plug.CSRFProtection to avoid Cross Site Request Forgery attacks.

Session stores

See Plug.Session.Store for the specification session stores are required to implement.

Plug ships with the following session stores:

Options

Additional options can be given to the session store, see the store's documentation for the options it accepts.

Examples

plug Plug.Session, store: :ets, key: "_my_app_session", table: :session