Oh yes, final followup for the terminally curious; I also had to add
this little class in order to get analysis turned on for my programmatic
field:
class PathField extends TextField {
PathField (IndexSchema schema) {
setAnalyzer(new WhitespaceGapAnalyzer());
ok, never mind all is well - I had a mismatch between the
schema-declared field and my programmatic field, where I was overzealous
in using OMIT_TF_POSITIONS.
-Mike
On 6/2/2012 5:02 PM, Mike Sokolov wrote:
I'm creating a some Solr plugins that index and search documents in a
special way, and
I'm creating a some Solr plugins that index and search documents in a
special way, and I'd like to make them as easy as possible to
configure. Ideally I'd like users to be able to just drop a jar in
place without having to copy any configuration into schema.xml, although
I suppose they will ha