最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
当前位置: 首页 - 科技 - 知识百科 - 正文

MongoDBTip:ThetouchCommand

来源:动视网 责编:小采 时间:2020-11-09 13:24:24
文档

MongoDBTip:ThetouchCommand

MongoDBTip:ThetouchCommand:MongoDB 2.2 introduced the touch command, which loads data from the data storage layer into memory. The touch command will load a collections documents, indexes or both into memory. This can be ideal to preheat a newly started server, in
推荐度:
导读MongoDBTip:ThetouchCommand:MongoDB 2.2 introduced the touch command, which loads data from the data storage layer into memory. The touch command will load a collections documents, indexes or both into memory. This can be ideal to preheat a newly started server, in


MongoDB 2.2 introduced the touch command, which loads data from the data storage layer into memory. The touch command will load a collection’s documents, indexes or both into memory. This can be ideal to preheat a newly started server, in

MongoDB 2.2 introduced the touch command, which loads data from the data storage layer into memory. The touch command will load a collection’s documents, indexes or both into memory. This can be ideal to preheat a newly started server, in order to avoid page faults and slow performance once the server is brought into production. You can also use this when adding a new secondary to an existing replica set to ensure speedy subsequent reads.

Note that while the touch command is running, a replica set member will enter into a RECOVERING state to prevent reads from clients. When the operation completes, the secondary will return to the SECONDARY(2) state.

You invoke the touch command through the following syntax:

db.runcommand({ touch: “collection_name”, data: true, index: true})


Here you indicate which collection to touch and whether or not you want both documents (data) and/or indexes to be loaded into memory. Index and data are both off by default, so you will need to indicate at least one as “true” to have any effect on your server. Otherwise you will see the following message:

db.test.runCommand(“touch”)
 ???????"ok" : 0,
 ???????"errmsg" : "must specify at least one of (data:true, index:true)

touch is non-blocking on a mongod process, so you can run it concurrent with other commands.


For a full list of MongoDB commands, check out the Database commands in the MongoDB Manual

文档

MongoDBTip:ThetouchCommand

MongoDBTip:ThetouchCommand:MongoDB 2.2 introduced the touch command, which loads data from the data storage layer into memory. The touch command will load a collections documents, indexes or both into memory. This can be ideal to preheat a newly started server, in
推荐度:
标签: touch the tip
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top