mongodb的一些配置

*.properties配置文件

#mongo

mongo.replicaSet=120.76.137.246:25347 //地址端口号

mongo.connectionsPerHost=200  #每个主机答应的连接数(每个主机的连接池大小),当连接池被用光时,会被阻塞住 ,默以为10 --int

mongo.threadsAllowedToBlockForConnectionMultiplier=10

mongo.connectTimeout=10000 #在建立(打开)套接字连接时的超时时间(ms),默以为0(无穷) --int

mongo.maxWaitTime=120000#被阻塞线程从连接池获取连接的最长等待时间(ms) --int

mongo.autoConnectRetry=false #控制系统在发生连接错误时是否重试 ,默以为false --boolean

mongo.socketKeepAlive=false  //false 短连接,为true是长连接

mongo.socketTimeout=0 #套接字超时时间;该值会被传递给Socket.setSoTimeout(int)。默以为0(无穷) --int

mongo.slaveOk=true #//指明是否答应驱动从次要节点或者奴隶节点读取数据,默以为false --boolean

mongo.writeNumber=1

mongo.riteTimeout=0

mongo.writeFsync=true

mongo.maxConnectionLifeTime=5000 #设置连接池最长生命时间

mongo.userName=myhuiqu

mongo.pass=Huiqu.com@123

你可能感兴趣的:(mongodb的一些配置)