有时候需要对字段里面的字符串进行索引,比如查找评论,搜索引擎等需求。
{ "_id" : ObjectId("5a5b56b80f12feec77a93a86"), "song" : "1. Hotel California", "lyrics" : "On a dark desert highway, cool wind in my hair. Warm smell of colitas, rising up through the air.Chan" }
{ "_id" : ObjectId("5a5b56c00f12feec77a93a87"), "song" : "1. Hotel California", "lyrics" : "On a dark desert highway, cool wind in my hair. Warm smell of colitas, rising up through the air." }
{ "_id" : ObjectId("5a5b57200f12feec77a93a88"), "song" : "3. Hotel California", "lyrics" : "Such a lovely place, Such a lovely face." }
{ "_id" : ObjectId("5a5b57200f12feec77a93a89"), "song" : "4. Hotel California", "lyrics" : "Some dance to remember, some dance to forget." }
{ "_id" : ObjectId("5a5b57200f12feec77a93a8a"), "song" : "5. Hotel California", "lyrics" : "Welcome to the Hotel California" }
{ "_id" : ObjectId("5a5b57200f12feec77a93a8b"), "song" : "hell world", "lyrics" : "Welcome to beijing" }
{ "_id" : ObjectId("5a5b79090f12feec77a93a8c"), "song" : "6. Hotel California", "lyrics" : "ssl certificate" }
{ "_id" : ObjectId("5a5b7c080f12feec77a93a8d"), "song" : "7. Hotel California", "lyrics" : "pre-market lovely" }
添加全文索引:
db.tesla.ensureIndex({song:"text",lyrics:"text"},{weights:{song:1,lycris:2}})
{song:"text",lyrics:"text"}:给"song","lyrics"字段添加全文索引。
{weights:{song:1,lycris:2}: 权重分配,"lycris" 的权重为2,"song"的权重为1.(权重越大优先级越高,权重的区间为1-1000,000,000)
一旦分配错了权重,只能删除索引重新建立,建立权重请务必小心
db.tesla.find({$text:{$search:"lovely"}})
{ "_id" : ObjectId("5a5b57200f128"), "song" : "3. Hotel California", "lyrics" : "Such a lovely place, Such a lovely face." }
(只有一条)
db.tesla.find({$text:{$search:"dark"}})
{ "_id" : ObjectId("5a5b56b80f126"), "song" : "1. Hotel California", "lyrics" : "On a dark desert highway, cool wind in my hair. Warm smell of colitas, rising up through the air. Chan" }
{ "_id" : ObjectId("5a5b56c00f167"), "song" : "1. Hotel California", "lyrics" : "On a dark desert highway, cool wind in my hair. Warm smell of colitas, rising up through the air." }
db.tesla.find({$text:{$search:"lovely remember"}})
{ "_id" : ObjectId("5a5b57200f12feec77a93a88"), "song" : "3. Hotel California", "lyrics" : "Such a lovely place, Such a lovely face." }
{ "_id" : ObjectId("5a5b57200f12feec77a93a89"), "song" : "4. Hotel California", "lyrics" : "Some dance to remember, some dance to forget." }
(中间使用空格隔开)
db.tesla.find({$text:{$search:"\"dark\"\"chan\""}})
{ "_id" : ObjectId("5a5b56b80f12feec77a93a86"), "song" : "1. Hotel California", "lyrics" : "On a dark desert highway, cool wind in my hair. Warm smell of colitas, rising up through the air.Chan" }
(使用\"把关键字包起来)
db.tesla.find({$text:{$search:"dark -chan"}})
{ "_id" : ObjectId("5a5b56c00f12feec77a93a87"), "song" : "1. Hotel California", "lyrics" : "On a dark desert highway, cool wind in my hair. Warm smell of colitas, rising up through the air." }
(使用-将排除的关键字标识出来)
db.tesla.find({$text:{$search:"lovely -pre -market"}})
{ "_id" : ObjectId("5a5b57200f12feec77a93a88"), "song" : "3. Hotel California", "lyrics" : "Such a lovely place, Such a lovely face." }
(有短语的需要在短语之间进行拆分,例子中的pre-market拆成 pre -market,否则mongoDB会把pre-market的减号当成分隔符)
$text
expression.$text
query can not appear in $nor
expressions.$text
query in an $or
expression, all clauses in the $or
array must be indexed.hint()
if the query includes a $text
query expression.$natural
sort order if the query includes a $text
expression.$text
expression, which requires a special text index, with a query operator that requires a different type of special index. For example you cannot combine $text
expression with the $near
operator.翻译: