You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by Apache Wiki <wi...@apache.org> on 2010/04/27 11:36:06 UTC

[Solr Wiki] Trivial Update of "ExtractingRequestHandler" by MarcGhorayeb

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Solr Wiki" for change notification.

The "ExtractingRequestHandler" page has been changed by MarcGhorayeb.
http://wiki.apache.org/solr/ExtractingRequestHandler?action=diff&rev1=58&rev2=59

--------------------------------------------------

  
  If you want to set a '''multiValued''' field, use the ''ModifiableSolrParams'' class like this:
  {{{
- p = new ModifiableSolrParams();
+ ModifiableSolrParams p = new ModifiableSolrParams();
  for(String value : values) {
      p.add(ExtractingParams.LITERALS_PREFIX + "field", value);
  }