Re: Comma delemitered words shawn in terms like one word.

2011-05-27 Thread abhay kumar
Thanks I was looking exactly for this. I needed to spli tokens based on comma. On Fri, Jun 18, 2010 at 10:12 PM, Joe Calderon wrote: > set generateWordParts=1 on wordDelimiter or use > PatternTokenizerFactory to split on commas > > > http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters#sol

Re: Comma delemitered words shawn in terms like one word.

2010-06-18 Thread Joe Calderon
set generateWordParts=1 on wordDelimiter or use PatternTokenizerFactory to split on commas http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters#solr.PatternTokenizerFactory you can use the analysis page to see what your filter chains are going to do before you index /admin/analysis.jsp

Comma delemitered words shawn in terms like one word.

2010-06-18 Thread Vitaliy Avdeev
Hello. In indexing text I have such string John,Mark,Sam. Then I looks at it in TermVectorComponent it looks like this johnmarksam. I am using this type for storing data What filter I need to use to get John Mark Sam as di