tags:

views:

39

answers:

2

I have solr up and running but I cannot get the results when I search "Bicycle AND Boy", works fine for "Bicycle Boy". What are the steps to enable such searches?

+1  A: 

Can you try searching Bicycle AND Boy without quotations?

D_K
naa, i guess I need to expand my queries a little. Somehow the config file must use some settings.
Wajih
+1  A: 

By default the configuration for Solr is set to use OR as the default query operator. Look for this line in the schema.xml file:

<solrQueryParser defaultOperator="OR"/>

You can also reference the Solr Tutorial for more details on querying... http://lucene.apache.org/solr/tutorial.html#Querying+Data

Paige Cook