up vote 1 down vote favorite
1
share [g+] share [fb]

I am having lots of solr document indexed which has field

uri = nntp://msnews.microsoft.com/microsoft.public.windows.server.sbs

but when i search with query

uri:nntp\://msnews.microsoft.com/microsoft.public.windows.server.sbs

It returns zero results. The search query works with similar other uri (nntp\://msnews.microsoft.com/microsoft.public.windows.windowsxp.general) though.

What am i missing here?

link|improve this question

68% accept rate
have you tried issuing the query through the Solr console? don't know about pysolr but I just tested this on pure Solr and it worked for me. – Mauricio Scheffer Feb 24 '09 at 23:48
feedback

1 Answer

If your search URI is similar to /select?uri%3Anntp*&rows=0 you should still be able to get a good idea of how many items in that field begin with nntp without even returning any rows, the numFound attribute of the result tag should tell you.

If this is blank, I would check your logfile. It is entirely likely you're adding documents with commit turned off. I would use the command line scripts to force things to commit and refresh the readers:

sync
bin/commit 
sync
bin/readercycle

Then I would issue that search again and see if you can see your data again.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.