Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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!

share|improve this question
Still wondering... – HolySamosa May 9 '12 at 16:00

1 Answer

There are no general limits. 32-bit machines might have trouble with GET responses over 4 gigabytes though. I suggest you do some testing to see how much your clients can easily download (are they on smartphones in places with spotty connections, or are they academics on the Internet2 ?). You may also allow user-settable pagination (with upper limits you have set to stop your server from dying).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.