Cloudant选择器查询

时间:2015-10-21 14:51:50

标签: json cloudant

我想使用cloudant db使用选择器进行查询,例如如下所示:用户希望借助其借用的数量超过数字,如何在cloudant选择器中访问数组以查找特定记录

{
       "_id": "65c5e4c917781f7365f4d814f6e1665f",
      "_rev": "2-73615006996721fef9507c2d1dacd184",
      "userprofile": {


     "name": "tom",
        "age": 30,
        "employer": "Microsoft"

      },
      "loansBorrowed": [
        {
          "loanamount": 5000,
          "loandate": "01/01/2001",
          "repaymentdate": "01/01/2001",
          "rateofinterest": 5.6,
          "activeStatus": true,
          "penalty": {
            "penalty-amount": 500,
            "reasonforPenalty": "Exceeded the date by 10 days"
          }
        },
        {
          "loanamount": 3000,
          "loandate": "01/01/2001",
          "repaymentdate": "01/01/2001",
          "rateofinterest": 5.6,
          "activeStatus": true,
          "penalty": {
            "penalty-amount": 400,
            "reasonforPenalty": "Exceeded the date by 10 days"
          }
        },
        {
          "loanamount": 2000,
          "loandate": "01/01/2001",
          "repaymentdate": "01/01/2001",
          "rateofinterest": 5.6,
          "activeStatus": true,
          "penalty": {
            "penalty-amount": 500,
            "reasonforPenalty": "Exceeded the date by 10 days"
          }
        }
      ]
    }

2 个答案:

答案 0 :(得分:11)

如果您使用默认的Cloudant查询索引(键入文本,索引所有内容):

{
   "index": {},
   "type": "text"
}

然后,以下查询选择器应该可以找到例如所有贷款金额> gt的文件; 1000:

"loansBorrowed": { "$elemMatch": { "loanamount": { "$gt": 1000 } } }

我不确定您是否可以哄骗Cloudant Query仅对数组中的嵌套字段进行索引,因此,如果您不需要"索引所有内容的灵活性"方法,您可能最好创建一个Cloudant Search索引,该索引只索引您需要的特定字段。

答案 1 :(得分:9)

虽然Will的回答有效,但我想告诉您,您还有其他使用Cloudant Query的索引选项来处理数组。这个博客有关于各种权衡的详细信息(https://cloudant.com/blog/mango-json-vs-text-indexes/),但长话短说,我认为这可能是最好的索引选项:

{
  "index": {
    "fields": [
      {"name": "loansBorrowed.[].loanamount", "type": "number"}
    ]
  },
  "type": "text"
}

与Will的索引 - 所有方法不同,此处您只是索引特定字段,如果字段包含数组,您还要索引数组中的每个元素。特别是对于大型数据集上的"type": "text"索引,指定要索引的字段将为您节省索引构建时间和存储空间。请注意,指定字段的文本索引必须使用"fields":字段中的以下表单:{"name": "fieldname", "type": "boolean,number, or string"}

那么相应的Cloudant Query "selector":语句就是这样:

{
  "selector": {
    "loansBorrowed": {"$elemMatch": {"loanamount": {"$gt": 4000}}}
  },
  "fields": [
    "_id",
    "userprofile.name",
    "loansBorrowed"
  ]
}

另请注意,您不必将"fields":作为"selector":语句的一部分包含在内,但我这里只是预测了JSON的某些部分。如果从"selector":语句中省略它,则将返回整个文档。