Uses of Interface
org.apache.solr.response.QueryResponseWriter
-
Packages that use QueryResponseWriter Package Description org.apache.solr.core Core classes implementing Solr internals and the management ofSolrCoresorg.apache.solr.response API and implementations ofQueryResponseWriterfor formatting Solr request responsesorg.apache.solr.servlet Servlet related classes for powering the Solr HTTP API -
-
Uses of QueryResponseWriter in org.apache.solr.core
Fields in org.apache.solr.core with type parameters of type QueryResponseWriter Modifier and Type Field Description static Map<String,QueryResponseWriter>SolrCore. DEFAULT_RESPONSE_WRITERSMethods in org.apache.solr.core that return QueryResponseWriter Modifier and Type Method Description QueryResponseWriterSolrCore. getQueryResponseWriter(String writerName)Finds a writer by name, or returns the default writer if not found.QueryResponseWriterSolrCore. getQueryResponseWriter(SolrQueryRequest request)Returns the appropriate writer for a request.QueryResponseWriterSolrCore. registerResponseWriter(String name, QueryResponseWriter responseWriter)NOTE: this function is not thread safe.Methods in org.apache.solr.core that return types with arguments of type QueryResponseWriter Modifier and Type Method Description PluginBag<QueryResponseWriter>SolrCore. getResponseWriters()Methods in org.apache.solr.core with parameters of type QueryResponseWriter Modifier and Type Method Description QueryResponseWriterSolrCore. registerResponseWriter(String name, QueryResponseWriter responseWriter)NOTE: this function is not thread safe. -
Uses of QueryResponseWriter in org.apache.solr.response
Subinterfaces of QueryResponseWriter in org.apache.solr.response Modifier and Type Interface Description interfaceBinaryQueryResponseWriterImplementations ofBinaryQueryResponseWriterare used to write response in binary format.Classes in org.apache.solr.response that implement QueryResponseWriter Modifier and Type Class Description classBinaryResponseWriterclassCSVResponseWriterResponse writer for csv dataclassGeoJSONResponseWriterExtend the standard JSONResponseWriter to support GeoJSON.classGraphMLResponseWriterclassJSONResponseWriterclassPHPResponseWriterclassPHPSerializedResponseWriterA description of the PHP serialization format can be found here: http://www.hurring.com/scott/code/perl/serialize/classPythonResponseWriterclassRawResponseWriterWrites a ContentStream directly to the output.classRubyResponseWriterclassSchemaXmlResponseWriterclassSmileResponseWriterclassXMLResponseWriterMethods in org.apache.solr.response that return QueryResponseWriter Modifier and Type Method Description protected QueryResponseWriterRawResponseWriter. getBaseWriter(SolrQueryRequest request)Methods in org.apache.solr.response with parameters of type QueryResponseWriter Modifier and Type Method Description static voidQueryResponseWriterUtil. writeQueryResponse(OutputStream outputStream, QueryResponseWriter responseWriter, SolrQueryRequest solrRequest, SolrQueryResponse solrResponse, String contentType)Writes the response writer's result to the given output stream. -
Uses of QueryResponseWriter in org.apache.solr.servlet
Methods in org.apache.solr.servlet that return QueryResponseWriter Modifier and Type Method Description protected QueryResponseWriterHttpSolrCall. getResponseWriter()ReturnsQueryResponseWriterto be used.
-