Re: Solr Searching on other fields which are not in query

2008-10-30 Thread Norberto Meijome
On Thu, 30 Oct 2008 15:50:58 -0300 "Jorge Solari" <[EMAIL PROTECTED]> wrote: > > > in the schema file. or use Dismax query handler. b _ {Beto|Norberto|Numard} Meijome Windows: "Where do you want to go today?" Linux: "Where do you want to go tomorrow?" FreeBSD: "Are you

Re: Solr Searching on other fields which are not in query

2008-10-30 Thread Jorge Solari
I didn't mean with that it was the way to define the default field it in the schema, only a generic way to say "default field name". The default field name, seems to be "text" in your case. If the search query doesn't say on which field to search, the word will be searched in that field. in the

Re: Solr Searching on other fields which are not in query

2008-10-30 Thread Yerraguntla
Never mind, I understand now. I have text. I was searching on a string field with space in it and with no quotes. This is causing to scan for text fields(since default search field is text) in the schema. Also in my schema there is an indexed field(AnimalNameText) which is not populated whi

Re: Solr Searching on other fields which are not in query

2008-10-30 Thread Yerraguntla
Hmm, I dont have any defined in the schema.xml. Can you give the exact syntax how it looks like in schema.xml I have text. Does it mean if sufficient requested count not available, it looks for the search string in any of the text fields that are indexed? Thanks Ravi Jorge Solari wrote: >

Re: Solr Searching on other fields which are not in query

2008-10-30 Thread Jorge Solari
Your query AnimalName:German Shepard. means AnimalName:German :Shepard. whichever the defaultField is Try with AnimalName:"German Shepard" or AnimalName:German AND AnimalName:Shepard. On Thu, Oct 30, 2008 at 12:58 PM, Yerraguntla <[EMAIL PROTECTED]> wrote: > > Hi, > > I have a data set w