How to Load Large Data Set Say Million of records ??

How to Load Large Data Set Say Million of records ??

pavanprakashpavanprakash 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

Answers

  • colincolin Posts: 15,240Questions: 1Answers: 2,599

    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

  • pavanprakashpavanprakash Posts: 3Questions: 1Answers: 0

    I am working on Django . The examples are related to php . Can you help me out the same in django

  • colincolin Posts: 15,240Questions: 1Answers: 2,599
    Answer ✓

    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

  • pavanprakashpavanprakash Posts: 3Questions: 1Answers: 0
    edited May 2018

    This article helped me a lot .Thanks a ton @colin :) :) :)

This discussion has been closed.