I'd like to apply boost, but need to use it with the forward tokenizer.
Also, the function input doesn't give me enough power. I need to boost based on whether the term was found in the URL, title, contents, etc. but boost just gives a bag of words. If it could give me either the document object or document ID then I could boost appropriately.
Finally, I also have a documentation request. It's unclear what words[] represents in boost currently. It says it's "an array of all words". However it's not clear to me if this is referring to all the words in the document, all the words in the index, etc.
I'd like to apply
boost
, but need to use it with theforward
tokenizer.Also, the function input doesn't give me enough power. I need to boost based on whether the term was found in the URL, title, contents, etc. but
boost
just gives a bag of words. If it could give me either the document object or document ID then I could boost appropriately.Finally, I also have a documentation request. It's unclear what
words[]
represents inboost
currently. It says it's "an array of all words". However it's not clear to me if this is referring to all the words in the document, all the words in the index, etc.