Re: CopyField exclude patterns

2015-02-03 Thread danny teichthal
Alexander and Jack Thanks for the reply. Looking at both, I think that the CloneFieldUpdateProcessor can do what I need without having to implement a custom one. By the way, Is there a performance penalty by update processor comparing to copy Field? On Mon, Feb 2, 2015 at 4:29 PM, Alexandre Rafa

Re: CopyField exclude patterns

2015-02-02 Thread Alexandre Rafalovitch
Not on copyField, You can use UpdateRequestProcessor instead ( http://www.solr-start.com/javadoc/solr-lucene/org/apache/solr/update/processor/CloneFieldUpdateProcessorFactory.html ). This allows to specify both inclusion and exclusion patterns. Regards, Alex. Sign up for my Solr resource

Re: CopyField exclude patterns

2015-02-02 Thread Jack Krupansky
Sorry, that feature is not available in Solr at this time. You could implement an update processor which copied only the desired input field values. This can be done in JavaScript using the script update processor. -- Jack Krupansky On Mon, Feb 2, 2015 at 2:53 AM, danny teichthal wrote: > Hi, >