On Mon, Sep 8, 2008 at 2:01 PM, Alex Gadea <[EMAIL PROTECTED]> wrote: > http://localhost:8983/solr/select?q=suit > > I get nothing even though one of the records that was returned includes that > word in it.
The field that contains "suit" may not be the default search field for the Lucene/Solr QueryParser (see schema.xml). You can: - change the default field - explicitly specify the field you are searching... q=myfield:suit - use a multi-field query parser like DisMax and specify multiple fields to search across -Yonik