: So if you're looking for some shoes: : (size:8 AND color:'blue') AND object_type:'shoe'
: Or if you're searching on brands : (genre:'skater' AND brand_desc:'skater boy') AND object_type:'brand' a slight improvement on this: put your object_type restriction in a filter query (&fq=object_type:foo) and not in your main query ... that way it won't affect the scoring, and it will be cached uniquely so the work of identifying the set of all shows will only be done once per commit (and likewise for brands) -Hoss