在MongoDB中,使用文本搜索功能之前,確保您的數據已經過適當的驗證和索引
db.collection_name.createIndex({ field_name: "text" });
將collection_name
替換為您的集合名稱,將field_name
替換為您希望進行文本搜索的字段名稱。
{
"$jsonSchema": {
"bsonType": "object",
"required": ["title", "content"],
"properties": {
"title": {
"bsonType": "string",
"description": "Title must be a string and is required"
},
"content": {
"bsonType": "string",
"description": "Content must be a string and is required"
}
}
}
}
將title
和content
替換為您希望驗證的字段名稱。
接下來,使用validate()
方法將JSON Schema應用于您的集合:
db.collection_name.validate(
{ "$jsonSchema": { ... } },
{ validationLevel: "strict" }
);
將collection_name
替換為您的集合名稱,將JSON Schema替換為您在上一步中創建的Schema。validationLevel: "strict"
表示所有插入和更新的文檔都必須符合Schema。您可以根據需要選擇其他驗證級別。
通過這種方式,您可以確保您的數據在進行文本搜索之前已經過驗證,從而提高搜索結果的質量和準確性。