Greetings,
I'm having trouble getting Solr to return results for key words that I
know for sure are in the index. As a test, I've indexed a PDF of a book
on Java. I'm trying to search the index for
"UnsupportedOperationException" but I get no results. I can "see" it in
the index though:
#####
[root@myhost apache-solr-1.4.1]# strings
example/solr/data/index/_0.fdt|grep UnsupportedOperationException
UnsupportedOperationException if the iterator returned by this collec-
throw new UnsupportedOperationException();
UnsupportedOperationException Object does not support method CHAPTER
9 EXCEPTIONS
UnsupportedOperationException, 87,
[root@myhost apache-solr-1.4.1]#
#####
On the other hand, if I search the index for the word "support" (which
is also contained in the grep above), I get a hit on this document.
Furthermore, if I search on "support" and include highlighted snippets,
I can see the word "UnsupportedOperationException" right in there in the
highlight results!
#####
of an object has
been detected where it is prohibited
UnsupportedOperationException Object does not <em>support</em>
#####
So why do I get no hits when I search for it?
This happens with many different key words. Any thoughts on how I can
trouble shoot this or ideas on why it's not working properly?
Thanks,
-Matt