Hi Lance, Thanks for the prompt reply. Looking at the analysis.jsp in the Solr release that is the code I should look at:
private static void doAnalyzer(JspWriter out, SchemaField field, String val, boolean queryAnalyser, boolean verbose, Set<Tok> match) throws Exception { FieldType ft = field.getType(); Analyzer analyzer = queryAnalyser ? ft.getQueryAnalyzer() : ft.getAnalyzer(); if (analyzer instanceof TokenizerChain) { ................. } and then it applies all the Filters in sequence as described into the XML file inside the SOlR folder (types.xml). The problem is that looking backward I couldn't find where the SchemaField field (the actual variable that I'm investigating) is coming from. In the JSP itself there is: field = schema.getField(name); that I suppose "schema" is the actual object holding the variables description (types.xml). The problem is that I'm unable to find where this object is defined and that is essential to retrieve the Filters applied to that variable. Where can be a good place to look for it?!? Thanks for your patience and in advance for the reply. Best wishes. -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-Analyzer-results-before-the-actual-query-tp1528692p1534337.html Sent from the Solr - User mailing list archive at Nabble.com.