gpt4 book ai didi

javascript - 创 build 计文档后如何构建cloudant索引?

转载 作者:行者123 更新时间:2023-12-03 01:02:36 29 4
gpt4 key购买 nike

我正在通过下面的代码以编程方式创建搜索索引。问题是插入设计文档后如何建立索引?或者它是第一次由 .search() 方法使用构建?

var book_indexer = function(doc) {
if (doc.author && doc.title) {
// This looks like a book.
index('title', doc.title);
index('author', doc.author);
}
}

var ddoc = {
_id: '_design/library',
indexes: {
books: {
analyzer: {name: 'standard'},
index : book_indexer
}
}
};

db.insert(ddoc, function (er, result) {
if (er) {
throw er;
}

console.log('Created design document with books index');
});

最佳答案

插入(正确形成的)设计文档后,索引的创建会自动发生。不需要采取进一步行动。实际索引是在文档创建、更新和删除上增量构建的,而不是在索引查询上构建的。

如果您更改设计文档,其所有索引都将被重建,如果您有大量数据,这可能需要一些时间。

关于javascript - 创 build 计文档后如何构建cloudant索引?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52564103/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com