I'm new to using Solr, and I must be missing something.
I didn't touch much in the example schema yet, and I imported some sample data. I also set up LocalSolr
, and that seems to be working well.
My issue is just with querying Solr
in general. I have a document where the name field is set to tom. I keep looking at the config files, and I just can't figure out where I'm going awry. A bunch of fields are indexed and stored, and I can see the values in the admin, but I can't get querying to work properly. I've tried various queries (http://server.com/solr/select/?q=value), and here are the results:
**Query:** ?q=tom
**Result:** No results
**Query:** q=\*:\*
**Result:** 10 docs returned
**Query:** ?q=*:tom
**Result:** No results
**Query:** ?q=name:tom
**Result:** 1 result (the doc with name : tom)
I want to get the first case (?q=tom)
working. Any input on what might be going wrong, and how I can correct it, would be appreciated.
I just came across to a similar problem... Namely I have defined multiple fields (that did not exist in the schema.xml) to describe my documents, and want to search/query on the multiple fields of the document, not only one of them (like the "name" in the above mentioned example).
In order to achieve this, I have created a new field ("compoundfield"), where I then put/copyField my defined fields (just like the "text" field on the schema.xml document that comes with Solr distribution). This results in something like this:
coumpoundfield definition:
defaultSearchField:
This works fine for me, but I am not sure if this is the best way to make such a "multiple field" search...
Cheers!
It seems that a DisMax parser is the right thing to use for this end.
Related stackoverflow thread here.
Well, despite of setting a default search field is quite usefull i don't understand why don't you just use the solr query syntax:
or
......./?q=:&fq=name:tom
Set
<defaultSearchField>
toname
in your schema.xmlYou might also want to check out (e)dismax instead.
Going through the solr tutorial is definitely worth your time: http://lucene.apache.org/solr/tutorial.html
My guess is that the "name" field is not indexed, so you can't search on it. You'd need to change your schema to make it indexed.
Also make sure that your XML actually lines up with the schema. So if you are adding a field named "name" in the xml, but the schema doesn't know about it, then Solr will just ignore that field (ie it won't be "stored" or "indexed").
Good luck
The current solution is deprecated in newer versions of lucene/solr. To change the default search field either use the
df
parameter or change the field that is in:inside the
solrconfig.xml
Note I am using a non-managed schema and solr 7.0.0 at the time of writing