I have 100000 records in my database with 10 column
which are int
, float
My question
I want to perform paging, search & sorting operation on this data.
I think i have two option.
either using Ajax request for each call or retrieve all data at time,perform operations like search, sort
suggest any better solution.
NOTE: Im using Meteor.js
and numbtel:mysql
package
Better you can try bootstrap framework(data tables). it can easily to integrate for large number of rows
You have two ways to perform the task:
-- If you follows this technique it will increase the loading time. It is consider better for less no of records. more more records it takes time on first time.
If you have less time for development then "Datatable is best". It already has all the feature you are looking for.
So it all depends on time of development and type of app you are going to develop.