I'm developing a RESTful web service with will serve large data sets, paginating the data sets into reasonably sized chunks of JSON.
Specifics of my application aside, are there any general recommendations to consider when choosing a page size?
I understand are often limits on POST size (e.g. 2 MB for Tomcat) , however I'm primarily concerned with GET requests.
Thanks!

