Re: SolrUser - Reindex

2010-05-13 Thread Erick Erickson
In general, it's hard to just answer since there are many factors to consider, not the least of which is what you want it to do. In this case, I suspect the issue is WordDelimiterFactory, it splits words on all non alphanumerics by default. It would probably be a good idea to work with the various

Re: SolrUser - Reindex

2010-05-13 Thread Anderson vasconcelos
I'm using the textgen fieldtype on my field as follow: . . They no remove the @ symbol. To configure to index the @ symbol i must use HTMLStripStandardTokenizerFactory ?

Re: SolrUser - Reindex

2010-05-13 Thread Erick Erickson
Probably your analyzer is removing the @ symbol, it's hard to say if you don't include the relevant parts of your schema. This page might help: http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters Best Erick On Thu, May 13, 2010

SolrUser - Reindex

2010-05-13 Thread Anderson vasconcelos
Why solr/lucene no index the Character '@' ? I send to index email fields x...@gmail.com ...and after try do search to_email:*...@*, and not found. I need to do some configuration? Thanks