Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to search on 2 fields without having to specify a field name in the query. In my schema.xml I have added 2 fields that correspond to 2 columns in a database table.

<field name="title" type="string" indexed="true" stored="true" required="true"/>
<field name="description" type="string" indexed="true" stored="true"/>

In addition I added a 3rd field which I want to use as a destination in "copyField"
and also as the "defaultSearchField"

<field name="combinedSearch" type="string" indexed="true" stored="true" multiValued="true"/>

<copyField source="*" dest="combinedSearch"/>

<uniqueKey>title</uniqueKey> 

<defaultSearchField>combinedSearch</defaultSearchField>

Now in the Solr Admin UI, if I enter some title it will return results but if I enter some description it won't return anything. It seems only the first field is used for searching. Am I using copyField and defaultSearchField in the right way? I've restarted the solr server and regenerated the index. Thanks.

share|improve this question
Hi dev, how you solve this problem now? Can you post the right answer? – Niko Nik Aug 14 '12 at 19:51

3 Answers

Try change your combinedSearch type to text and then regenerate the index.

share|improve this answer

Probably it ends in the same result, but for your information, i use copyField at the end of the schema.xml (but i dont think, the order is relevant) in the following syntax:

   <copyField source="title" dest="combinedSearch" />
   <copyField source="description" dest="combinedSearch" />

next:

<field name="combinedSearch" type="string"

If type="text" is the better choise depends on the definition of "string". If you are using default fieldTypes, type="string" could better for your case, because for string there is no analyzing per default, which means (probably) there is also no tokenyzing.

share|improve this answer

@dev, How you solved this problem?

I have same problem.

I have two fields, first_name and last_name

<fields>
    <field name="id" type="string" indexed="true" stored="true"/>
    <field name="first_name" type="text_general" indexed="true" stored="true"/>
    <field name="last_name" type="text_general" indexed="true" stored="true"/>
</fields>
<uniqueKey>id</uniqueKey>
<defaultSearchField>first_name</defaultSearchField>

I want to search in both fields, with priorities. At first first_name and if there's no result in last_name.

But now I'm getting result from first_name.

If somebody else knows an answer, please, write here.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.