Package org.apache.solr.update.processor
Class FieldNameMutatingUpdateProcessorFactory
- java.lang.Object
-
- org.apache.solr.update.processor.UpdateRequestProcessorFactory
-
- org.apache.solr.update.processor.FieldNameMutatingUpdateProcessorFactory
-
- All Implemented Interfaces:
NamedListInitializedPlugin
public class FieldNameMutatingUpdateProcessorFactory extends UpdateRequestProcessorFactory
In the FieldNameMutatingUpdateProcessorFactory configured below, fields names will be mutated if the name contains space. Use multiple instances of this processor for multiple replacements<processor class="solr.FieldNameMutatingUpdateProcessorFactory"> <str name="pattern ">\s</str> <str name="replacement">_</str> </processor>
- Since:
- 5.0.0
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.solr.update.processor.UpdateRequestProcessorFactory
UpdateRequestProcessorFactory.RunAlways
-
-
Constructor Summary
Constructors Constructor Description FieldNameMutatingUpdateProcessorFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description UpdateRequestProcessor
getInstance(SolrQueryRequest req, SolrQueryResponse rsp, UpdateRequestProcessor next)
void
init(org.apache.solr.common.util.NamedList<?> args)
init
will be called just once, immediately after creation.
-
-
-
Method Detail
-
getInstance
public UpdateRequestProcessor getInstance(SolrQueryRequest req, SolrQueryResponse rsp, UpdateRequestProcessor next)
- Specified by:
getInstance
in classUpdateRequestProcessorFactory
-
init
public void init(org.apache.solr.common.util.NamedList<?> args)
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
- Parameters:
args
- non-null list of initialization parameters (may be empty)
-
-