tags:

views:

37

answers:

2

Using Solr, if I have a phrase:

"The quick brown fox jumped over the lazy dog."

Can I apply my own weighting to these words at index-time?

Something like this:

"The^1 quick^2 brown^2 fox^3 ..." etc

And, then, I'd like to have those numbers influence the score.

Thanks!

+2  A: 

You might wanna check payloads: Lucid or ultramagnus. You can add weights to terms at index time this way.

Jem
A: 
mamoo
I believe he is talking about boosting the score of terms when they are indexed, not when they are in a query.
KenE
Yes you're right, I didn't notice "at index time"... sorry.
mamoo