Re: Concat 2 fields in another field

2013-08-28 Thread Alok Bhandari
Hi all, thanks for your replies. I have managed to do this by writing custom updateprocessor and configured it as bellow processor class=com.test.solr.update.CustomConcatFieldUpdateprocessorFactory str name=fieldfirstName/str str name=fieldlastName/str

Re: Concat 2 fields in another field

2013-08-27 Thread Rafał Kuć
Hello! You don't have to write custom component - you can use ScriptUpdateProcessor - http://wiki.apache.org/solr/ScriptUpdateProcessor -- Regards, Rafał Kuć Sematext :: http://sematext.com/ :: Solr - Lucene - ElasticSearch Hello all , I am using solr 4.x , I have a requirement where I

Re: Concat 2 fields in another field

2013-08-27 Thread Alok Bhandari
Thanks for reply. But I don't want to introduce any scripting in my code so want to know is there any Java component available for the same. -- View this message in context: http://lucene.472066.n3.nabble.com/Concat-2-fields-in-another-field-tp4086786p4086791.html Sent from the Solr - User

RE: Concat 2 fields in another field

2013-08-27 Thread Markus Jelsma
2013 14:05 To: solr-user@lucene.apache.org Subject: Re: Concat 2 fields in another field Thanks for reply. But I don't want to introduce any scripting in my code so want to know is there any Java component available for the same. -- View this message in context: http://lucene

Re: Concat 2 fields in another field

2013-08-27 Thread Federico Chiacchiaretta
/ConcatFieldUpdateProcessorFactory.html -Original message- From:Alok Bhandari alokomprakashbhand...@gmail.com Sent: Tuesday 27th August 2013 14:05 To: solr-user@lucene.apache.org Subject: Re: Concat 2 fields in another field Thanks for reply. But I don't want to introduce

Re: Concat 2 fields in another field

2013-08-27 Thread Jack Krupansky
: Re: Concat 2 fields in another field Hi, we do the same thing using an update request processor chain, this is the snippet from solrconfig.xml updateRequestProcessorChain name=concatenation processor class=solr.CloneFieldUpdateProcessorFactory str name=source firstname/str str name

Re: Concat 2 fields in another field

2013-08-27 Thread Bill Bell
releases of my book - variations on using the existing update processors. -- Jack Krupansky -Original Message- From: Federico Chiacchiaretta Sent: Tuesday, August 27, 2013 8:39 AM To: solr-user@lucene.apache.org Subject: Re: Concat 2 fields in another field Hi, we do the same