How to combine sphinxquerysets in djang-sphinx
- by mlissner
querysets from django can be combined with a pipe like so:
q1 = Articles.objects.filter(name="goats")
q2 = Articles.objects.filter(name='cows')
q1 = q1|q2.
Is there a way to do this for sphinxquerysets? So far, I'm striking out.