Large data set integration
Large data set integration
Currently I have a data set containing >1,000,000 reads formatted as such:
{
"data": [
[
"Cynoscionicola",
"1"
],
[
"Decalepis",
"2"
],
...
]
}
Is there a way to only process this file say 10 rows at a time and display them, then process the next ten once next is clicked?
Or what would be the best method to integrate the data into two columns.
The data can be reformatted as necessary.
Answers
http://datatables.net/examples/data_sources/server_side.html
The data I need to post is not in the database though. Those values are generated from calculations on the data. (A loop that goes through and counts the number of elements containing found with specific prefixes)
Is it possible to do the calculations in the server side script? If so, how
Currently following:
https://datatables.net/development/server-side/python_mysql