I want to be able to store a doc with a field with this as a substring:
  www.fubar.com
And then I want this document to get returned when I query on
  fubar or
  fubar.com

I assume what I should do is make www and com stop words, and make sure the
field is tokenized, so it wil break it up along the '.'

I thought  I should take a list of Enlisgh stop words, add in 'www' and com,
and then make sure the field is tokenized, which I did by using this
constructor:
new Field("name", "value",  Field.Store.YES, Field.Index.Analyzed).
I saw that Field.Index.Analyzed meant it would be tokenized.

It is not working.  Searching on fubar or fubar.com does not return it. 
Thanks for any help.
-- 
View this message in context: 
http://old.nabble.com/Can%27t-get-tokenization-stop-works-working-tp27400546p27400546.html
Sent from the Lucene - Java Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
For additional commands, e-mail: java-user-h...@lucene.apache.org

Reply via email to