php小編草莓將為大家介紹如何在同名的巢狀欄位中建立文字索引。在資料庫中,我們常常會遇到需要在巢狀欄位中搜尋和查詢的情況。然而,當存在多個同名的嵌套欄位時,建立文字索引就會變得複雜。本文將詳細說明如何應對這個問題,為大家提供解決方案。接下來,我們將一步步引導您完成這個過程,讓您輕鬆地為同名的巢狀欄位建立文字索引。
我正在嘗試在具有相同名稱的 2 個巢狀欄位上建立複合文字索引。我嘗試這樣做的原因是我可以在兩個欄位上使用 mongo 執行全文搜尋。
{ "createdat": "2023-01-20t18:39:45.551z", "id": "63cadff13fc409d0b026f219", "userid": "63c13a9ba4c921b78e7d1a3a", "question": { "statement": "what is the atomic number of potassium?", "fileurl": "http://localhost:4000/media/90152d8363424e688ad6e9505194a818.jpg", "mediatype": 2 }, "answer": { "statement": "19" } }
從範例中可以看到,question
和 answer
有相同的巢狀欄位 statement
。 我正在嘗試為問題和答案語句建立文字索引
textsearchindexmodel := mongo.indexmodel{ keys: bson.d{ {value: "question.statement", key: "text"}, {value: "answer.statement", key: "text"}, }, options: options.index().setname("textsearchindex"), }
這不起作用並產生了此錯誤:
Failed to create index for flashcard collection:....caused by :: The field 'text' appears multiple times in the index key pattern
p.s:如果您不熟悉go,您也可以上傳它在mongodb 上的方式,因為到mongodb go 驅動程式的對應非常簡單
請注意,一個集合最多可以有一個文字索引.
#如果您知道這一點並且想要建立涵蓋 "question.statement"
和 "answer.statement"
的文字索引,那麼這是可行的。
您的錯誤是索引規範: bson .d
表示一個文檔,一個有序的屬性列表(名稱-值對)。這是 bson.e
的一部分,其中 bson. e
是:
type e struct { key string value interface{} }
key
是屬性的名稱,value
是該屬性的值。所以你把它倒過來了,它應該是:
textSearchIndexModel := mongo.IndexModel{ Keys: bson.D{ {Key: "question.statement", Value: "text"}, {Key: "answer.statement", Value: "text"}, }, Options: options.Index().SetName("textSearchIndex"), }
以上是如何為同名的嵌套欄位建立文字索引的詳細內容。更多資訊請關注PHP中文網其他相關文章!