summaryrefslogtreecommitdiff
path: root/jstests/bench_test1.js
diff options
context:
space:
mode:
authorAntonin Kral <a.kral@bobek.cz>2011-09-14 17:08:06 +0200
committerAntonin Kral <a.kral@bobek.cz>2011-09-14 17:08:06 +0200
commit5d342a758c6095b4d30aba0750b54f13b8916f51 (patch)
tree762e9aa84781f5e3b96db2c02d356c29cf0217c0 /jstests/bench_test1.js
parentcbe2d992e9cd1ea66af9fa91df006106775d3073 (diff)
downloadmongodb-5d342a758c6095b4d30aba0750b54f13b8916f51.tar.gz
Imported Upstream version 2.0.0
Diffstat (limited to 'jstests/bench_test1.js')
-rw-r--r--jstests/bench_test1.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/jstests/bench_test1.js b/jstests/bench_test1.js
new file mode 100644
index 0000000..c32b37d
--- /dev/null
+++ b/jstests/bench_test1.js
@@ -0,0 +1,16 @@
+
+t = db.bench_test1;
+t.drop();
+
+t.insert( { _id : 1 , x : 1 } )
+t.insert( { _id : 2 , x : 1 } )
+
+ops = [
+ { op : "findOne" , ns : t.getFullName() , query : { _id : 1 } } ,
+ { op : "update" , ns : t.getFullName() , query : { _id : 1 } , update : { $inc : { x : 1 } } }
+]
+
+seconds = .7
+
+res = benchRun( { ops : ops , parallel : 2 , seconds : seconds , host : db.getMongo().host } )
+assert.lte( seconds * res.update , t.findOne( { _id : 1 } ).x , "A1" )