Method: (STARTUP-APPLICATION STANDARD-APPLICATION)

Documentation

Simply clears out the app's session-table.

Source

(defmethod startup-application ((app standard-application))
  "Simply clears out the app's session-table."
  ;; why is this done in startup-application and not
  ;; shutdown-application?
  (clrhash (application.session-table app)))
Source Context