如何在 CouchDB 2.0 中创建文本索引?
How to create a TEXT index in CouchDB 2.0?
我正在阅读这篇文章https://cloudant.com/blog/mango-json-vs-text-indexes,我想在我的 CouchDB 中创建一个 TEXT 索引
在 Fauxton -> Mango Indexes 页面,我发布了
{
"index": {
"fields": [
{
"name": "id_str",
"type": "number"
}
]
},
"name": "doc_id",
"type": "text"
}
...但出现 503 错误并显示以下消息:
{"error":"required index service unavailable","reason":"text"}
我什至无法在他们的 documentation 中找到任何相关信息,我现在真的很迷茫。
所以:
- 如何在 CouchDB 中创建 TEXT 索引?
- 在哪里可以找到对 CouchDB 中的索引的适当介绍?
请帮忙,谢谢。
此错误与未知索引类型不同,因为 Couchdb 2.0 具有文本索引存根,但不直接实现它们。这些存根依赖于 cloudant 提供的 dreyfus 文本索引模块。
可以找到使用 Dreyfus(及其 Clouseau 依赖项)配置和重新编译 couchdb 2.0+ 的指南 here。 (我验证了这些说明适用于截至 2017 年 4 月 22 日的最新 couchdb 和 dreyfus master 分支。)
我正在阅读这篇文章https://cloudant.com/blog/mango-json-vs-text-indexes,我想在我的 CouchDB 中创建一个 TEXT 索引
在 Fauxton -> Mango Indexes 页面,我发布了
{
"index": {
"fields": [
{
"name": "id_str",
"type": "number"
}
]
},
"name": "doc_id",
"type": "text"
}
...但出现 503 错误并显示以下消息:
{"error":"required index service unavailable","reason":"text"}
我什至无法在他们的 documentation 中找到任何相关信息,我现在真的很迷茫。
所以:
- 如何在 CouchDB 中创建 TEXT 索引?
- 在哪里可以找到对 CouchDB 中的索引的适当介绍?
请帮忙,谢谢。
此错误与未知索引类型不同,因为 Couchdb 2.0 具有文本索引存根,但不直接实现它们。这些存根依赖于 cloudant 提供的 dreyfus 文本索引模块。
可以找到使用 Dreyfus(及其 Clouseau 依赖项)配置和重新编译 couchdb 2.0+ 的指南 here。 (我验证了这些说明适用于截至 2017 年 4 月 22 日的最新 couchdb 和 dreyfus master 分支。)