Hello,
I want to write a custom analyzer in pylucene. Usually in java lucene , when you write a analyzer class , your class inherits lucene's Analyzer class.
but pylucene uses jcc , the java to c++/python compiler.
So how do you let a python class inherit from a java class using jcc ,and especially how do you write a custom pylucene analyzer?
Thanks.