Hi, I've a thrift service that has the following signature:
public List<Map<String,String>> getResults(String query) Since the result list can be a lot bigger than the RAM, I cannot create the whole result list in memory before handing it off to thrift. Is there a way in thrift to fill this resultant list in batches, say 100 items at a time without any changes on the client side. Regards, Anand
