Guys -- What schema will you use for 500K docs with a variety of 0-30 different category ids, each carrying its own weight and completely overriding the default scoring?
For example, these documents: A: 1:0.21, 2:0.41, 3:0.15 ... B: 1:0.18, 2:0.65 4:0.98 ... C: 6:0.75 ... D: 2:0.14 ... When searching "1" I'd like document A to appear first (has 0.21) and when searching "1 || 2" i'd like document B to appear first (has an aggregate score of 0.83 vs. 0.62). Currently I run this with full-text after artificially repeating the number of each category's weight (i.e. "1" would appear 21 times on a text field) - is there a better way? Best, -- Michael