Re: Not getting results when searching a term from Solr Admin

2013-06-12 Thread coderslay
Hi Raymond, Thanks a lot. It is Appreciated :D Regards, Nasir -- View this message in context: http://lucene.472066.n3.nabble.com/Not-getting-results-when-searching-a-term-from-Solr-Admin-tp4069761p4069896.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Not getting results when searching a term from Solr Admin

2013-06-12 Thread Raymond Wiker
It looks like I haven't paid sufficient attention to your earlier messages - sorry. It is quite clear that "content" contains bing, and you should have gotten results back if the default search field was content. It could be that your solrconfig.xml file sets df to a field that does not contain "b

Re: Not getting results when searching a term from Solr Admin

2013-06-12 Thread Raymond Wiker
Hmmm did you restart SOLR after changing the schema? And did you try searching for content:bing (alternatively, setting the df parameter to "content" (without quotes)? On Wed, Jun 12, 2013 at 12:12 PM, coderslay wrote: > Apologies Raymond for the Name. > > I have tried doing that also and st

Re: Not getting results when searching a term from Solr Admin

2013-06-12 Thread coderslay
Hi Raymond, I was playing with it and i specified df=content then i get the results Can you explain me what happened here? Regards, Nasir -- View this message in context: http://lucene.472066.n3.nabble.com/Not-getting-res

Re: Not getting results when searching a term from Solr Admin

2013-06-12 Thread coderslay
Apologies Raymond for the Name. I have tried doing that also and still the same response :( Regards, Nasir -- View this message in context: http://lucene.472066.n3.nabble.com/Not-getting-results-when-searching-a-term-from-Solr-Admin-tp4069761p4069880.html Sent from the Solr - User mailing lis

Re: Not getting results when searching a term from Solr Admin

2013-06-12 Thread Raymond Wiker
I'm not Jack, but... ... locate the line in schema.xml that says content and replace "content" with "text". You may also have to edit solrconfig.xml if the request handler defines the parameter "df" - this, too, should point to your default field. On Wed, Jun 12, 2013 at 10:44 AM, coderslay w

Re: Not getting results when searching a term from Solr Admin

2013-06-12 Thread coderslay
Hi Jack, I tried doing what you told me still i am facing the same issue :( Can you provide me some sample schema.xml to work it out? Regards, Nasir -- View this message in context: http://lucene.472066.n3.nabble.com/Not-getting-results-when-searching-a-term-from-Solr-Admin-tp4069761p4069869.

Re: Not getting results when searching a term from Solr Admin

2013-06-12 Thread Raymond Wiker
There's your problem, then - you have "content" as the default search field, but your copyField nodes treat "text" as the default search field. If you change the default search field to text, you should be able to search for "bing"; otherwise, you'll need to use something like "content:bing". On

Re: Not getting results when searching a term from Solr Admin

2013-06-12 Thread coderslay
Hi jack, Here is my schema.xml My default search field id "content" Regards, Nasir -- View this message in context: http://lucene.472066.n3.nabble.com/Not-getting-results-when-searching-a-term-from-Solr-Admin-tp4069761p4069862.h

Re: Not getting results when searching a term from Solr Admin

2013-06-12 Thread Raymond Wiker
It appears that the word "bing" appears in the title; is the title field copied into the default search field (assuming that you even have a default search field)? If not, you need to somehow specify the field(s) that you want to search in. On Wed, Jun 12, 2013 at 7:52 AM, coderslay wrote: > Hi

Re: Not getting results when searching a term from Solr Admin

2013-06-11 Thread coderslay
Hi Jack, Thanks for the quick response. Actually i have configured Apache Nutch 1.6 along with Apache Solr 4.3.0 After crawling a website(For example www.bing.com) I use the following command to do a Solr Index bin/nutch solrindex http://127.0.0.1:8983/solr/ crawl/crawldb -linkdb crawl/linkdb cra

Re: Not getting results when searching a term from Solr Admin

2013-06-11 Thread Jack Krupansky
Sorry, but a Solr search does not return indexed terms - it returns documents and displays stored (not indexed) values. Please state more specifically what the actual problem is. Have you verified that the field you are searching in actually has the query terms indexed? -- Jack Krupansky --