1. Mongo索引写入配置指南
功能描述:
一:api接口信息
适配器选择:\Adapter\MongoDB\MongoDBQueryAdapter
api接口信息:createIndex
二:配置指南
示例方案:https://pro.qliang.cloud/strategy/detail/3ba36520-355e-3f32-acba-7bc2e0ec9709
{
"data": {
"index1": {
"key": "content.FID",
"sort": "1"
}
},
"collectionName": "60dabfe6-8949-3623-a772-c79c2289eba5_ADATA"
}
三:参数说明
参数名称 | 类型 | 是否必填 | 描述 |
data | object | 是 | 索引配置信息 |
index1 | object | 是 | 索引字段,可以设置多个索引字段 |
key | string | 是 | 索引字段名称 |
sort | string | 是 | 索引排序,1为升序,-1为降序 |
collectionName | string | 是 | 集合名称 |