Method: (SAVED-SLOTS SCHEMA-TABLE)

Source

(defmethod saved-slots ((table schema-table))
  ;; Don't serialize the BY-ID hash table, but rebuild it by hand after the
  ;; other slots are deserialized.  This is necessary because schemas are
  ;; referenced more than once, and the serializer doesn't handle shared
  ;; objects (unless they're 'real' persistent objects).
  '(pathname by-name highest-schema-id))
Source Context