public StreamQueryRequest(SolrQuery q) {
super(q, METHOD.POST);
String[] bodies = q.remove(CommonParams.STREAM_BODY);
if (bodies != null && bodies.length > 0) {
String body = StringUtils.join(bodies, " ");
this.contentStream = new StringStream(body);
}
}