From f0722561c304eeca2538db3eb83a74c2f6632d49 Mon Sep 17 00:00:00 2001 From: Michael Klishin Date: Sun, 11 May 2014 12:42:23 -0400 Subject: [PATCH] Run fewer cycles Saves laptop batter while I'm on this flight, yo. --- test/monger/test/stress_test.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/monger/test/stress_test.clj b/test/monger/test/stress_test.clj index 075fe17..0b57882 100644 --- a/test/monger/test/stress_test.clj +++ b/test/monger/test/stress_test.clj @@ -24,7 +24,7 @@ (monger.core/set-default-write-concern! WriteConcern/NORMAL) (deftest ^{:performance true} insert-large-batches-of-documents-without-object-ids - (doseq [n [1000 10000 100000]] + (doseq [n [10 100 1000 10000 20000 30000]] (let [collection "things" docs (map (fn [i] (to-db-object { :title "Untitled" :created-at (Date.) :number i }))