本文整理汇总了Java中org.apache.solr.client.solrj.impl.StreamingBinaryResponseParser类的典型用法代码示例。如果您正苦于以下问题:Java StreamingBinaryResponseParser类的具体用法?Java StreamingBinaryResponseParser怎么用?Java StreamingBinaryResponseParser使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
StreamingBinaryResponseParser类属于org.apache.solr.client.solrj.impl包,在下文中一共展示了StreamingBinaryResponseParser类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: queryAndStreamResponse
import org.apache.solr.client.solrj.impl.StreamingBinaryResponseParser; //导入依赖的package包/类
/**
* Query solr, and stream the results. Unlike the standard query, this will
* send events for each Document rather then add them to the QueryResponse.
*
* Although this function returns a 'QueryResponse' it should be used with care
* since it excludes anything that was passed to callback. Also note that
* future version may pass even more info to the callback and may not return
* the results in the QueryResponse.
*
* @since solr 4.0
*/
public QueryResponse queryAndStreamResponse( SolrParams params, StreamingResponseCallback callback ) throws SolrServerException, IOException
{
ResponseParser parser = new StreamingBinaryResponseParser( callback );
QueryRequest req = new QueryRequest( params );
req.setStreamingResponseCallback( callback );
req.setResponseParser( parser );
return req.process(this);
}