Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
feat: parallel queries #475
feat: parallel queries #475
Changes from 45 commits
a19ff08
7668936
0a43819
07ccc5f
adf29f6
44d586a
eff8c02
f85a50a
2c9c4fc
1b3b402
7d64cb6
9afb66d
be32274
cd92ae7
bb0b7c3
c623415
0ad62bb
4d36384
c8f5c14
7f809b2
d29baa4
fd76dbb
a353331
e30970d
1ba2d91
8978347
b0d6d83
7c9a9f2
f9e9448
079b5fa
8af23d8
6033eae
dbbbe65
bdaaa74
20d1e9f
1d0560d
7152b3e
1d66a4e
da257ce
d11392d
b4aa891
dabe9c5
28f3b59
2f1527e
35aace8
24f304e
1a0ae81
2b6b06b
d65a7d8
f5f8852
cbe2162
490e1df
764aeda
5da9023
43fa201
f8a0586
96dc637
b312e30
4a08e33
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's a separate issue, but this makes me think we should double check caching interactions with exec queries. I don't think we want to be going to the cache for any exec queries...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks like cache is set to false by default and
exec
makes a query without cache so it should always be off.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good, sounds like younger me did think it through :)