I've looked at http://code.google.com/appengine/docs/java/urlfetch/overview.html but the code does not show a pooling example, i mean if i want to fetch www.example.com/1.html, www.example.com/3.html, www.example.com/3.html, ...., www.example.com/1000.html
I'd have to open 1000 connection and close 1000 connections. I think I could just open 1 connection 'keep-alive', and issue 1000 request and then close it. that should be faster. but i have no idea how to do that using url.openStream()