clojure-spec

About: http://clojure.org/about/spec Guide: http://clojure.org/guides/spec API: https://clojure.github.io/spec.alpha/clojure.spec.alpha-api.html
ikitommi 2021-02-24T10:50:47.081700Z

about the slow specs:

(time
  (s/valid?
    (s/keys)
    {:clojure.core.specs.alpha/ns-clauses (repeat 100000 (list :gen-class))}))
; "Elapsed time: 5069.738452 msecs"
; => true
we added auto-closing of api specs to reitit (using spec-tools) to avoid this.