2008/11/24 finy finy <[EMAIL PROTECTED]>: > thanks for your help > *************************************** > set the position increment of all of the > tokens you get to 0... this should have the effect of an "OR". > *************************************** > how to do this? in solr solrconfig.xml? or schema.xml? > please help me.
I assumed you already had a custom TokenFilter or Analyzer coded in Java to turn "oneworldonedream" into multiple tokens. Call Token.setPositionIncrement(0) on all but the first token for any group of tokens you produce from single words. -Yonik