Query Performance #3101
zachstence
started this conversation in
Ideas
Replies: 1 comment
-
Mutable queries may make #1803 easier to implement / work with |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Description
While talking with @ItsMeBrianD about the new Pivot Table component, he raised some concerns about the performance of queries and using pagination to (ideally) make them more performant. The way
Query
is currently written, pagination would create many queries and might not destroy/free memory when they are unused. This could make the Pivot Table sluggish.These ideas would benefit Pivot Table performance in particular, but also the whole app in general. They are not a pre-requisite to the Pivot Table, but the performance may be poor without these. Time will tell.
.where()
,.limit()
, etc - limits object creation/destruction.copy()
method?)done
, it can never bein progress
again)length
anddescribe
queries should happen onQuery
creationdata
query should wait until the value of the query is used.where().skip().limit()
) - avoid executing middle queriesWhat problem would this solve?
No response
How should it work?
No response
Beta Was this translation helpful? Give feedback.
All reactions