Method: (OPEN-TRANSACTION STANDARD-CACHE T)

Source

(defmethod open-transaction ((cache standard-cache) transaction)
  ;; Add to open transactions.
  (setf (gethash (transaction-id transaction) (transactions cache))
        transaction))
Source Context