Re: solr: adding a string on to a field via DIH

2012-05-05 Thread okayndc
former> > > Or did you have something different in mind? > > -- Jack Krupansky > > -Original Message- From: okayndc > Sent: Saturday, May 05, 2012 9:12 AM > To: solr-user@lucene.apache.org > Subject: solr: adding a string on to a field via DIH > > > Hello, &g

Re: solr: adding a string on to a field via DIH

2012-05-05 Thread Jack Krupansky
? -- Jack Krupansky -Original Message- From: okayndc Sent: Saturday, May 05, 2012 9:12 AM To: solr-user@lucene.apache.org Subject: solr: adding a string on to a field via DIH Hello, Is it possible to concatenate a field via DIH? For example for the id field, in order to make it unique I want to

Re: solr: adding a string on to a field via DIH

2012-05-05 Thread Michael Della Bitta
There might be a Solr way of accomplishing this, but I've always done stuff like this in SQL (i.e. the CONCAT command). Doing it a Solr-native way would probably be better in terms of bandwidth consumption, but just giving you that option early in case there's not a better one. Michael On Sat, 20

solr: adding a string on to a field via DIH

2012-05-05 Thread okayndc
Hello, Is it possible to concatenate a field via DIH? For example for the id field, in order to make it unique I want to add 'project' to the beginning of the id field. So the field would look like 'project1234' Is this possible? Thanks