On 5/13/2014 3:12 AM, Anon15 wrote: > Thanks for replying ! > > This is my Schema.xml.
The XML is gone. I would imagine that this is happening because you're posting on the Nabble forum, not directly to the mailing list. Nabble is a two-way mirror of the list, the actual mailing list is the true distribution point. I would guess that Nabble either removes or parses anything that looks like HTML before it sends to the mailing list, and if you try to parse XML as HTML, it would likely simply disappear. You may wish to use a paste website for including data instead. The Apache foundation has their own paste site at http://apaste.info for us to use. I did visit the Nabble version of your post, and I can see the schema.xml there. Your fieldType named "text" has the following line in it: <filter class="solr.SnowballPorterFilterFactory" language="French" protected="protwords.txt"/> SnowballPorterFilterFactory is a factory class for a stemming filter. In your schema, the fields named label, content, teaser, and path_alias are using this fieldType. I would imagine that the matches you are seeing are coming from one or more of those fields. Thanks, Shawn