Using an array of IDs to select rows instead of an array of objects #652
AlexeyEsin
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Right now,
selectedRecords
is an array of objects of the same type asrecords
, which is why you have to use a lot of memory. In the worst case, when all records in the table are selected, a copy of therecords
array is stored in memory. To reduce memory costs, an array of IDs could be used. It would be nice to add such an option.Beta Was this translation helpful? Give feedback.
All reactions