Hey, what is the maximum query count you can fetch...
# orm-help
k
Hey, what is the maximum query count you can fetch from a table. Is it over 10k?
1
n
Hello @Kenny Tran 👋 This should be dependent on the database that you are using and also the memory that is available for the database for computation. It could happen that querying too much data in a single query could lead to an out-of-memory error.
k
Okay, thanks for clarifying
🙏 1
m
@Kenny Tran just an advise - whenever there is an option the result can be huge, you should always limit/paginate etc. It will help you to avoid some crazy performance issue or OOMs at worst
👍 2