How to Load Large Data Set Say Million of records ??
How to Load Large Data Set Say Million of records ??
pavanprakash
Posts: 3Questions: 1Answers: 0
I am loading the data using javascript method and My dataset contains 5 lakh records . and the table is not being displayed . It is able to display upto 3 lakh records . My dataset will Increase further to 1 million and more . How to Address this issue
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
Hi @pavanprakash ,
If you enable server-side processing, as in the example here, the client will only ask for the data needed for that draw. This will mean that the table can cope with any size data.
Cheers,
Colin
I am working on Django . The examples are related to php . Can you help me out the same in django
How the server sends data to DataTables is really separate from the DataTables code itself, so the best bet is to search the web. A quick search turned up this page which looks like it'll do what you're after.
Cheers,
colin
This article helped me a lot .Thanks a ton @colin