GenieSession.load-Tuple{String} - Method
load(session_id::String) :: Session

Loads session data from persistent storage.

source


GenieSession.persist-Tuple{HTTP.Messages.Request, HTTP.Messages.Response, Dict{Symbol, Any}} - Method
persist(s::Session) :: Session

Generic method for persisting session data - delegates to the underlying SessionAdapter.

source


GenieSessionFileSession.read-Tuple{String} - Method
read(session_id::Union{String,Symbol}) :: Union{Nothing,GenieSession.Session}
read(session::GenieSession.Session) :: Union{Nothing,GenieSession.Session}

Attempts to read from file the session object serialized as session_id.

source


GenieSessionFileSession.write-Tuple{GenieSession.Session} - Method
write(session::GenieSession.Session) :: GenieSession.Session

Persists the Session object to the file system, using the configured sessions folder and returns it.

source



Genie