
Miscellaneous Notes
-------------------

Application and Domain need to be the same (CASE SENSITIVE AS WELL), if
wishing to only specify the application when performing index and query
operations.  This isn't really an issue since they are very similar in 
meaning.

XML Related:
XML support needs work.  The socket reading stuff needs work.  It is important
to end the xml stream/string with a newline character!


Be careful when doing complex searches.  Lucene doesn't handle multiple
words (NOT PHRASEs) very cleanly.  They each need to be added as a search
term.
eg Title:Three Little Pigs  <- THIS IS INCORRECT
Needs to be:
 Title:Three Title:Little Title:Pigs

^ This will match any of the three words.

 +Title:Three +Title:Little +Title:Pigs

^ This will match ALL of the three words only (BUT in any order).

 +Title:"Three Little Pigs"

^ This will match the exact title.

Default action of lucene is to OR terms together. A + will AND it and a - will 
NOT the next term (or group if in round brackets).