google-code-export / babeliumproject

Automatically exported from code.google.com/p/babeliumproject
0 stars 0 forks source link

Don't retrieve all the items of a list in a single call #95

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
We currently have pagination controls for several item lists throughout the 
application. But, the pagination is done on the client meaning all the items 
matching a certain criteria are retrieved from the database and stored in the 
client.

That data is sliced by the pagination controls in order to display only a 
subset of it. This behavior is unacceptable when we have large lists of data.

We should make DB queries for each page of the pagination caching some results.

Original issue reported on code.google.com by inkoperu...@gmail.com on 16 Mar 2011 at 10:12