如果design-doc有_local_seq
,则CouchDB 1.6添加了将文档的options.local_seq = true
(或seq)传递给视图的功能。我想和couchdb-lucene一起使用但是我无法使它工作?
这是设计文档:
{
"_id": "_design/changes",
"_rev": "5-e894a1ea6a6768acb22e6597425de4b2",
"language": "javascript",
"options": {
"local_seq": true
},
"fulltext": {
"replication": {
"index": "function(doc) {\n if(doc.context){\n\n var ret = new Document(); \n ret.add(doc.context,{field:'context',store:'yes'});\n ret.add(doc._id,{field:'id',store:'yes',analyze:false});\n ret.add(doc._rev,{field:'rev',store:'yes',analyze:false});\n ret.add(doc._local_seq,{field:'seq',store:'yes',analyze:false});\n\n return ret;\n }\n} "
}
}
}
答案 0 :(得分:1)
听起来你需要向CouchDB-Lucene打开一个功能请求:https://github.com/rnewson/couchdb-lucene/issues - 它似乎没有启用该功能,如果可能的话。