ring-swagger

ring-swagger & compojure-api
ikitommi 2019-03-31T12:27:24.039200Z

on my macbook, it seems to be 16ms + 16ms = 32ms to write & read a 2M JSON file with jsonista.

ikitommi 2019-03-31T12:27:42.039400Z

(let [file (io/file "data.json")
      data (cheshire/parse-string (slurp "json2m.json"))]
  (cc/quick-bench
    (do (j/write-value file data)
        (j/read-value file))))