We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1c28770 + 2976f44 commit adaf517Copy full SHA for adaf517
.gitignore
@@ -1,7 +1,8 @@
1
*.swp
2
*.pyc
3
*.config
4
+*.csv
5
+*.out
6
*.log
7
*.log.*
-*.out
-*.csv
8
+temp*
pytpcc/MONGODB_EXAMPLE
@@ -1,7 +1,13 @@
+# MongodbDriver Configuration File
+# generate example with default values via `tpcc.py --print-config mongodb`
[mongodb]
-denormalize = False
-uri = mongodb://listOfHosts:27017/test?ssl=true&replicaSet=RSName&authSource=admin&retryWrites=true
-user = username
-passwd = passwd
+# The mongodb connection string or full URI or mongodb+srv string
+uri = mongodb://localhost:27017
+causal_consistency = True
+findandmodify = True
name = tpcc
-findAndModify = True
9
+secondary_reads = True
10
+denormalize = True
11
+retry_writes = True
12
+# user = username
13
+# passwd = passwd
0 commit comments