Package org.apache.solr.response
Class PHPSerializedResponseWriter
- java.lang.Object
-
- org.apache.solr.response.PHPSerializedResponseWriter
-
- All Implemented Interfaces:
QueryResponseWriter
,NamedListInitializedPlugin
public class PHPSerializedResponseWriter extends Object implements QueryResponseWriter
A description of the PHP serialization format can be found here: http://www.hurring.com/scott/code/perl/serialize/
-
-
Field Summary
-
Fields inherited from interface org.apache.solr.response.QueryResponseWriter
CONTENT_TYPE_TEXT_ASCII, CONTENT_TYPE_TEXT_UTF8, CONTENT_TYPE_XML_UTF8
-
-
Constructor Summary
Constructors Constructor Description PHPSerializedResponseWriter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getContentType(SolrQueryRequest request, SolrQueryResponse response)
Return the applicable Content Type for a request, this method must be thread safe.void
init(org.apache.solr.common.util.NamedList<?> namedList)
init
will be called just once, immediately after creation.void
write(Writer writer, SolrQueryRequest req, SolrQueryResponse rsp)
Write a SolrQueryResponse, this method must be thread save.
-
-
-
Method Detail
-
init
public void init(org.apache.solr.common.util.NamedList<?> namedList)
Description copied from interface:NamedListInitializedPlugin
init
will be called just once, immediately after creation.Source of the initialization arguments will typically be solrconfig.xml, but will ultimately depends on the plugin itself
- Specified by:
init
in interfaceNamedListInitializedPlugin
- Parameters:
namedList
- non-null list of initialization parameters (may be empty)
-
write
public void write(Writer writer, SolrQueryRequest req, SolrQueryResponse rsp) throws IOException
Description copied from interface:QueryResponseWriter
Write a SolrQueryResponse, this method must be thread save.Information about the request (in particular: formatting options) may be obtained from
req
but the dominant source of information should bersp
.There are no mandatory actions that write must perform. An empty write implementation would fulfill all interface obligations.
- Specified by:
write
in interfaceQueryResponseWriter
- Throws:
IOException
-
getContentType
public String getContentType(SolrQueryRequest request, SolrQueryResponse response)
Description copied from interface:QueryResponseWriter
Return the applicable Content Type for a request, this method must be thread safe.QueryResponseWriter's must implement this method to return a valid HTTP Content-Type header for the request, that will logically correspond with the output produced by the write method.
- Specified by:
getContentType
in interfaceQueryResponseWriter
- Returns:
- a Content-Type string, which may not be null.
-
-