I'm playing around with Restler3 (really awesome!) and noticed a problem. So, the index() function should list all rows of a table, that's correct, right? I'm doing it that way: index() lists all rows of a table. But the client doesn't support to load an JSON object that's maybe about 50k rows big.
I think you can see the problem: I want to split that up in parts of maybe 50 rows. That would mean:
- Call index()
- Get number of queries to run (eg. 100rows would result in two queries)
- Call index(1) and save
- Call index(2) and save
My question is now: What's the best solution for that splitting? What do you think about my example? Can Restler already do such things?
Thank's for reading. Maybe you know something. Just answer…