Skip to content

Instantly share code, notes, and snippets.

@ruseel
Created November 24, 2016 07:30
Show Gist options
  • Save ruseel/91cdb8e0939390abe2716fe9607ae90a to your computer and use it in GitHub Desktop.
Save ruseel/91cdb8e0939390abe2716fe9607ae90a to your computer and use it in GitHub Desktop.
(defmacro qb [cnt & body]
`(let [s# (System/currentTimeMillis)]
(dotimes [_# ~cnt] ~@body)
(prn (/ (- (System/currentTimeMillis) s#) ~cnt))))
(qb 1e2 (d/pull (d/db conn) '[*] [:bernice.host/domain "localhost"]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment