自管理部署上的文本索引版本
在此页面上
文本索引有以下版本:
textIndexVersion | 说明 |
---|---|
版本 3 | MongoDB 3.2 引入了文本索引第 3 版。 版本 3 是在 MongoDB 3.2 及更高版本中创建的文本索引的默认版本。 |
版本 2 | MongoDB 2.6 引入了文本索引版本 2。 版本 2 是在 MongoDB 2.6 到 3.0 中创建的文本索引的默认版本。 |
版本 1 | MongoDB 2.4 引入文本索引版本 1。 MongoDB 2.4 仅支持版本 1。 |
更改索引版本
重要
尽可能始终使用默认索引版本。 仅在出于兼容性原因需要时才覆盖默认版本。
要覆盖默认版本并为文本索引指定不同版本,请在创建索引时设置 textIndexVersion
选项:
db.<collection>.createIndex( { <field>: "text" }, { "textIndexVersion": <version> } )
例子
以下命令在content
字段上创建版本 2 文本索引:
db.test.createIndex( { "content": "text" }, { "textIndexVersion": 2 } )