设计文件创建后如何构建cloudant索引?

时间:2018-09-29 00:41:52

标签: javascript node.js nosql cloudant

我正在通过以下代码以编程方式创建搜索索引。问题是插入设计文档后如何建立索引?还是会首次使用.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');
});

1 个答案:

答案 0 :(得分:1)

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

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