Chris Hostetter wrote:
: > (although an interesting question is what happens if i want to find
: > similar docs based on a field htat is stored by not indexed so it *really*
: > has no analyzer)
: I think the MLT implementation would need some modification to support
: that -- what you are suggesting is to get the top tf/idf terms for a
: stored but not indexed field then query against a different field (that
: is indexed). As is, it compares like fields to one another...
ah ... i didn't know that about MLT ... i thought you could tell if to
find "words" from a set of source fields and then query them against a
single target field.
That would be something we could add to the solr MoreLikeThisHelper...
contrib MoreLikeThis can take text/reader as the input. It is just when
you use a Document as the input that you are locked into the same fields.
-Hoss