Method: (SESSION.VALUE T STANDARD-SESSION)

Documentation

Lookup the value associated with KEY in the session.

Source

(defmethod session.value (key (session standard-session) &optional default)
  "Lookup the value associated with KEY in the session."
  (gethash key (session.object-pool session) default))
Source Context