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