Hello, I'm looking through the wiki, so if it's there, I'll find it, and you can ignore this post. If this isn't documented, can anyone explain how to achieve this?
Suppose I have two docs A and B that I want to index. I want to index these documents so that A has the equivalent of 100 copies of 'Banana', and B has the equivalent of 20 copies of 'Banana', so that searches for Banana will rank A before B, due to term frequency. When indexing, I would have something like A Banana 100 B Banana 20. Will I have to repeat 'Banana' 100 times in a string variable that I send to the index? And likewise 20 times for B? Or is there a better way to accomplish this? thanks gene