作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在阅读这篇文章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"
}
{"error":"required index service unavailable","reason":"text"}
最佳答案
此错误与未知索引类型不同,因为 Couchdb 2.0 具有文本索引的 stub ,但不直接实现它们。这些 stub 依赖于 cloudant 提供的 dreyfus 文本索引模块。
可以找到使用 Dreyfus(及其 Clouseau 依赖项)配置和重新编译 couchdb 2.0+ 的指南 here . (我已验证这些说明适用于截至 2017-04-22 的最新 couchdb 和 dreyfus master 分支。)
关于couchdb - 如何在 CouchDB 2.0 中创建 TEXT 索引?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43534188/
我是一名优秀的程序员,十分优秀!