ext:
http://lucene.472066.n3.nabble.com/Context-aware-suggesters-in-Solr-tp4127646p4147886.html
Sent from the Solr - User mailing list archive at Nabble.com.
Thanks Areek. So looking at the code in trunk, exposing it to Solr looks to be
pretty straightforward - just extending DocumentDictionaryFactory to take a
'contextField' parameter as well, and passing that on to the DocumentDictionary
constructor. I'll give it a go!
Thanks again.
Alan Woodwa
The context field can only be set at configuration-time for the
AnalyzingInfixSuggester (FYI: CONTEXTS_FIELD_NAME refers to the field in
Lucene index that is internally maintained by the suggester and does not
reflect any field in user's index). The context field can be specified and
fed into the s
Hi all,
I have a few of questions about the context-aware AnalyzingInfixSuggester:
- is it possible to choose a specific field for the context at runtime (say, I
want to limit suggestions by a field that I've already faceted on), or is it
limited to the hardcoded CONTEXTS_FIELD_NAME?
- is the co