0

索引功能

当我尝试索引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

4

1 回答 1

0

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

于 2017-09-10T14:42:23.537 回答