-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathbench.clj
37 lines (27 loc) · 1.01 KB
/
bench.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
;; HOW TO RUN: clojure -J-Xmx128m -Adev:bench scripts/bench.clj
(require '[criterium.core :as b])
(require '[next.jdbc :as jdbc])
(require '[next.jdbc.result-set :as jdbc-rs])
(require '[suricatta.core :as sc])
(def uri "jdbc:postgresql://127.0.0.1/test")
(def conn1 (jdbc/get-connection uri))
(def conn2 (sc/context uri))
(def sql1 "SELECT x FROM generate_series(1, 10000) as x;")
(defn test-next-jdbc1
[]
(let [result (jdbc/execute! conn1 [sql1] {:builder-fn jdbc-rs/as-unqualified-lower-maps})]
(with-out-str
(prn result))))
(defn test-suricatta1
[]
(let [result (sc/fetch conn2 sql1)]
(with-out-str
(prn result))))
(println "***** START: next.jdbc (1) *****")
;; (b/with-progress-reporting (b/quick-bench (test-next-jdbc1) :verbose))
(b/bench (test-next-jdbc1))
(println "***** END: next.jdbc (1) *****")
(println "***** START: suricatta (1) *****")
;; (b/with-progress-reporting (b/quick-bench (test-suricatta1) :verbose))
(b/bench (test-suricatta1))
(println "***** END: suricatta (1) *****")