Pretty normal scenario:
- I have a report with a large number of rows (>2000) to be rendered as an HTML table.
- I am paging the results on the client (browser) side.
- I want to render the first page as quickly as possible, the rest will continue to download as JSON (about 1MB total)
I want to use a single request to the server because the database query is expensive (and I don't want to cache anything on the web server)... so I am thinking of using Comet or flushing just the first page's data, then flushing more script tags for the rest of the data.
Is this feasible? Are there any tutorials/examples of this?
Thanks.