Method: (CACHE-COMMIT STANDARD-CACHE)

Source

(defmethod cache-commit ((cache standard-cache))
  ;; Commit all transactions.
  (map-transactions cache #'transaction-commit)
  ;; Save the schema table.
  (save-schema-table (schema-table cache)))
Source Context