如何使用couchdb-lucene索引嵌套对象

时间:2017-09-10 13:42:05

标签: couchdb couchdb-lucene

索引功能

当我尝试在索引函数中索引doc的子属性时,例如 ret.add(doc.complaint.status, {field: 'status', type: 'string'}) couchdb-lucene返回500。

function (doc) {
  var ret = new Document();

  ret.add(doc.customerName, {
    type: 'string',
    field: 'customerName'
  });

  ret.add(doc.complaint.status, {
    type: 'string',
    field: 'status'
  });

  ret.add(doc.complaint.numberOfCoupons, {
    type: 'int',
    field: 'numberOfCoupons'
  });

  return ret;
}

couchdb中存在的对象

{ "customerName": "Roman Maltsev", "complaint": { "status": "In progress", "numberOfCoupons": 10 } }

使用代理查询 GET http://localhost:5984/_fti/local/complaints-management-rom/_design/find/all?q=status:"In progress" 返回500

1 个答案:

答案 0 :(得分:0)

实际上问题是lucene索引每个文件,包括_design / view本身,所以我只需检查属性是否存在