Greetings!
So, I've created my first index and am able to search programmatically
(through SolrJ) and through the Web interface. (Yay!) I get non-empty
results for my searches!
My index was built from database records using
/dataimport?command=full-import. I have 9936 records in the table to be
indexed and the import status indicated it processed all 9936. However,
my searches only pull up a subset of the records that I know to contain
a word. For example, I know that there are hundreds of records
containing the word "Friday", yet my results for my "Friday" query only
contain 17 records (documents) in the Web interface, and only 10 records
from the SolrJ query.
I figure I must be doing something wrong in my query, or have somehow
indexed improperly. This might be a clue: My main text field in the
database table is URL-encoded. I wouldn't think that would matter, though.
Another example... In one of the documents returned by the "Friday"
query results, I noticed in the text the name of a co-worker "Drzal".
So, I searched on "Drzal" and my results came up with 0 documents. (!?)
Any ideas where I went wrong??
Mark