: myorg/solr/analysis/*.java`. I then made a `.jar` file from the .class files
: and put the .jar file in the solr/lib/ directory. I modified schema.xml to
: include the new filter:
what exactly do you mean by "the solr/lib/ directory" ? ... if you mean
that "solr" is the solr home dir where you
I'm trying to write and use a custom filter for Solr. I've got a filter
factory in myorg/solr/analysis/TestThingFilterFactory.java:
package myorg.solr.analysis;
import org.apache.lucene.analysis.TokenStream;
import org.apache.solr.analysis.BaseTokenFilterFactory;
import myorg.solr