Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Execute find and count queries in parallel for paginated requests #43

Open
winrono opened this issue May 2, 2021 · 0 comments
Open

Comments

@winrono
Copy link

winrono commented May 2, 2021

When find request is executed with pagination actual find and count requests are executed sequentially.

const results = await this._collection.find(query, options);
if (!hasPaging) {
return {
results,
};
}
const countOptions = {};
if (options.session) countOptions.session = options.session;
const count = await this._collection.count(query, countOptions);

Instead this could be performed in parallel noticeably improving performance for long-running DB requests

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant