Is server-side processing feasible for small datasets?

Is server-side processing feasible for small datasets?

havatarhavatar Posts: 2Questions: 1Answers: 0

Hello everyone,
I wanted to ask if there are any drawbacks to using Server-Side Processing for data rows that are less than 1,000? Would the DOM be faster in this scenario?

Note - I am using Server-Side Processing so that I can pull the data for the rows straight from the database using Ajax.

Thanks

This question has an accepted answers - jump to answer

Answers

  • allanallan Posts: 62,056Questions: 1Answers: 10,173 Site admin
    Answer ✓

    The only draw back is latency. It will take longer to make the Ajax request and get the data back that it would for DataTables to make the required calculations locally.

    I suppose one other drawback is server load. Rather than offloading the sorting and filtering to the client your server will have to do it.

    But you can use server-side processing for any data set size if you can live with that.

    Allan

  • havatarhavatar Posts: 2Questions: 1Answers: 0

    Thank you Sir

This discussion has been closed.