I am making a small android application in which I am using endless list view using https://github.com/commonsguy/cwac-endless/
The data on the server end may contain thousand of entries so it will be quite large to download all the values at once. Should I parse the data in parts using one link or should I break the web services in parts and call them using a sax parser in cacheInBackground()
after some interval of time from different links.