CouchDB本地服务器中的Cloudant搜索功能

时间:2017-05-16 16:06:12

标签: lucene couchdb cloudant couchdb-lucene

我在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}

1 个答案:

答案 0 :(得分:1)

IBM Cloudant背后的搜索堆栈由Apache Lucene提供支持,并且开源了一段时间。我认为enabling full text search in Apache CouchDB上的这篇文章是您正在寻找的内容。