Method: (CACHE-FULL-P CACHE)

Source

(defmethod cache-full-p ((cache cache))
  ;; Don't count dirty objects.
  (>= (hash-table-count (objects cache)) (cache-size cache)))
Source Context