0

我在 Cloudant 中有一个类似的搜索索引:

"indexes": {
    "search-cloud": {
      "analyzer": "standard",
      "index": "function(doc) { index(\"keyword\", doc.name); }"
    }
}

该功能有点激烈,但这就是设置。

看来它使用这个?org.apache.lucene.queryparser.classic

现在我有一个本地的 Fauxton CouchDB 1.6.1 数据库,我在上面暂存数据,但似乎没有在它上面实现搜索。

有没有办法安装它,以便我可以对数据库进行以下调用并获取信息?

http://localhost/{DB}/_design/filters/_search/search-cloud?q={SEARCH_QUERY}
4

1 回答 1

1

IBM Cloudant 背后的搜索堆栈由 Apache Lucene 提供支持,并在不久前开源。我认为这篇关于在 Apache CouchDB 中启用全文搜索的文章正是您想要的。

于 2017-05-22T23:46:20.950 回答