博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Mongo连接池操纵MongoOptions
阅读量:6693 次
发布时间:2019-06-25

本文共 1808 字,大约阅读时间需要 6 分钟。

2012-07-19 18:04:54|  分类: |  标签: |字号 

 
 
MongoOptions
java驱动中,可以在获取mongo实例时,指定一些参数,如下:
ServerAddress serverAddress=new ServerAddress("127.0.0.1",27017);
MongoOptions mongoOptions=new MongoOptions();
Mongo mongo=new Mongo(serverAddress,mongoOptions);
参数列表如下:
#控制系统在发生连接错误时是否重试 ,默以为false --boolean
mongo.options.autoConnectRetry=false
#每个主机答应的连接数(每个主机的连接池大小),当连接池被用光时,会被阻塞住 ,默以为10 --int
mongo.options.connectionsPerHost=10
#multiplier for connectionsPerHost for # of threads that can block if connectionsPerHost is 10, and threadsAllowedToBlockForConnectionMultiplier is 5, then 50 threads can block more than that and an exception will be throw --int
mongo.options.threadsAllowedToBlockForConnectionMultiplier=5
#被阻塞线程从连接池获取连接的最长等待时间(ms) --int
mongo.options.maxWaitTime
#在建立(打开)套接字连接时的超时时间(ms),默以为0(无穷) --int
mongo.options.connectTimeout=0
#套接字超时时间;该值会被传递给Socket.setSoTimeout(int)。默以为0(无穷) --int
mongo.options.socketTimeout=0
#This controls whether or not to have socket keep alive turned on (SO_KEEPALIVE). defaults to false --boolean
mongo.options.socketKeepAlive=false
#Override the DBCallback factory. Default is for the standard Mongo Java driver configuration --DBCallbackFactory
mongo.options.dbCallbackFactory
#//指明是否答应驱动从次要节点或者奴隶节点读取数据,默以为false --boolean
mongo.options.slaveOk=false
#假如为true,驱动每次update后会发出一个getLastError命令来保证成功,默以为false --boolean
mongo.options.safe=false
#If set, the w value of WriteConcern for the connection is set to this. Defaults to 0; implies safe = true --int
mongo.options.w=0
#If set, the wtimeout value of WriteConcern for the connection is set to this. Defaults to 0; implies safe = true --int
mongo.options.wtimeout=0
#Sets the fsync value of WriteConcern for the connection. Defaults to false; implies safe = true --boolean
mongo.options.fsync=false

转载地址:http://omcoo.baihongyu.com/

你可能感兴趣的文章
ELASTICSEARCH清理过期数据
查看>>
oo第三次博客作业
查看>>
设计模式六大原则(转载)
查看>>
Delphi TMemoryStream写入到字符串和字符串写入到流
查看>>
C#判断操作系统是32位还是64位(转)
查看>>
WebADI_配置设定01_设定整合WebADI Integrator(案例)
查看>>
GL_Oracle Erp常用的报表(汇总)
查看>>
使用javacv,解码socket接收的H264码流(byte[]),转为yuv处理,最后再合成转为H264...
查看>>
长春理工大学第十四届程序设计竞赛(重现赛)I
查看>>
corosync+pacemaker部署高可用集群
查看>>
利用Fidder工具抓取App数据包
查看>>
jQuery中 prop 与 attr 方法的区别
查看>>
jsp中遇到Integer的方法valueOf()和parseInt()的区别.前者要求是对象类型,后者是数字型字符串...
查看>>
java实例三维空间求点之间的距离。。。。
查看>>
java中I/O类
查看>>
JDBC(一)
查看>>
药房相关
查看>>
selectByExampleWithBLOBs-----搜索结果包含大字段类型----搜索结果包含大字段类型
查看>>
IT领域的罗马帝国——微软公司
查看>>
优化MySchool数据库(二)
查看>>