CouchDB 本地服务器中的 Cloudant 搜索功能
Cloudant Search feature in CouchDB Local server
我在 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}
IBM Cloudant 背后的搜索堆栈由 Apache Lucene 提供支持,并且不久前已经开源。我想 enabling full text search in Apache CouchDB 上的这篇文章正是您要找的。
我在 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}
IBM Cloudant 背后的搜索堆栈由 Apache Lucene 提供支持,并且不久前已经开源。我想 enabling full text search in Apache CouchDB 上的这篇文章正是您要找的。