ModifiableSolrParams -- (perhaps) modify MultiMapSolrParams
-----------------------------------------------------------
Key: SOLR-244
URL: https://issues.apache.org/jira/browse/SOLR-244
Project: Solr
Issue Type: New Feature
Reporter: Ryan McKinley
Priority: Minor
The existing ways to change parameters at runtime are awkward, this is a class
I have been using in SOLR-20. It is a solr params implementation with two nice
additions:
public void set( String name, String ... val ) {
...
}
public void add( String name, String ... val ) {
...
}
Rather then have a new class, it may be better to augment MultiMapSolrParams to
include a default constructor and use set/add to modify the final
Map<String,String[]>
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.