D
D
dom1720002020-07-15 21:39:48
MySQL
dom172000, 2020-07-15 21:39:48

How to speed up the output of 17000 - 20000 records from the mysql database on django?

Hello, can someone tell me how to display 17000 - 20000 records in the shortest possible time per page or how can I make it so that when the user reaches a certain page and then another 500 records are loaded?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
R
Roman Kitaev, 2020-07-15
@deliro

From experience, 9000 DOM nodes are already unbearable lags. 20k entries is more than 20k nodes, more likely to be closer to 100k, so it will hang tightly.
But if the issue is in the backend, prepare the results in the cache, optimize the number of SQL queries and network traffic.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question