Could someone provide me an example of how I would search a specific thread for a specific string?
I saw the bit about being able to search by threadID. That's great! Is there a way to search that particular threadID for two words?
For example: top or hat.
top and hat.
The first should return results for "either or" but does not require both.
The second would require the "post" result to contain both words.
I tried that and it didn't work.
Basically, what are all of the search operators, if applicable?
I started here but could not find what I was looking for:
http://wiki.apache.org/lucene-java/HowTo
It would be nice to have a list of all the search operators, their functions, and a single example for each operator.
One thing I did find useful was the comma. It appears that the comma is used to specify multiple string searches similar to "piping" the results of an awk command through a second awk command in linux.
Edit - I found exactly what I was looking for.
http://lucene.apache.org/java/2_4_0/queryparsersyntax.html#Term%20Modifiers
Double edit - I just tried some of the searches using the proper syntax and it appears not to be implemented or specifically disabled. "AND" "&&" "||" "OR" and such are not usable options. It says improve characters are present. I am a sad bear. 🙁