We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Now, i use the PostgreSQL as backend to store my datas which is ten million level. And some tests for me,finding that:
ten million level
1.Get note by name: cost about 5-6 seconds, it will be slower for me.
cost about 5-6 seconds
2.List notes in one project: cost about 70 million-seconds.
cost about 70 million-seconds
So i want to know how to improve the search speed for the note or occurrence?
Thanks
The text was updated successfully, but these errors were encountered:
You should consider change the data type from json to jsonb and create indexes on common fields you query.
Sorry, something went wrong.
No branches or pull requests
Now, i use the PostgreSQL as backend to store my datas which is
ten million level
.And some tests for me,finding that:
1.Get note by name:
cost about 5-6 seconds
, it will be slower for me.2.List notes in one project:
cost about 70 million-seconds
.So i want to know how to improve the search speed for the note or occurrence?
Thanks
The text was updated successfully, but these errors were encountered: