如何提高 pouchdb-find 查询的性能?

问题描述 投票:0回答:1

我在 React Native 中使用来自 couchDB 的 pouchDB 复制。这是我的 package.json:

"pouchdb": "^6.3.4",
"pouchdb-find": "^6.3.4",
"pouchdb-react-native": "^6.3.4",

我有一个名为“databaseA”的数据库,其中一列是“col1”。我已经使用 pouchdb-find 编写了一个查询来获取具有匹配的 databaseA 的所有记录 第 1 列中的值。

const localDB = new PouchDB('databaseA');
const remoteDB = new PouchDB('databaseA');
PouchDB.plugin(findPlugin);

localDB.replicate.from(
  remoteDB,
  (err, response) => {
    if (err) {
      return console.log(err);
    }
  },
);

localDB.createIndex({
  index: {
    fields: ['col1', 'col2'],
    ddoc: 'col1-col2-index',
  },
});

localDB.find({
  selector: {
    col1: {
      $eq: '1',
    },
    col2: true,
  },
  fields: ['_id', 'col1', 'col2' ],
  limit: 0,
  // sort: [‘_id’],
  use_index: 'col1-col2-index',
}).then((results) => {
  alert(`Index called to increase speed: ${results.docs.length}`);
}).catch((ex) => {
  // alert(`Index called to increase speed: Exception: ${JSON.stringify(ex)}`);
});

export function getItems(col1) {
  const startTime = new Date();
  return (dispatch, getState) => {
    return localDB.find({
      selector: {
        col1: {
          $eq: col1,
        },
        col2: true,
      },
      fields: ['_id', 'col2', 'col1' ],
      // sort: [‘_id’],
      use_index: 'col1-col2-index',
    }).then((results) => {
      const time = new Date().getTime() - startTime;
      alert(`Total time ${time}`);
    }).catch((ex) => {
      console.log(ex);
    });
  };
}

我的数据库中有大约 900 条记录。查询时间接近2分钟,查询时间相当长。如何提高该查询的性能?请帮忙

performance indexing couchdb pouchdb
1个回答
0
投票

您可以使用https://www.meilisearch.com 它具有强大的搜索功能和 MilliSearch 提供广泛的查询功能: 全文搜索, 模糊匹配, 过滤, 排序, 突出显示

© www.soinside.com 2019 - 2024. All rights reserved.