Is it possible to intersect 2 querysets: SphinxQuerySet and normal django's QuerySet ?
I need to filter SphynxQuerySet by ordinary django's filters. What the best way to do that?
I try go this direction:
ids = []
for obj in Object.search.query(query).all():
ids += [obj.id]
qs = Object.objects.all().filter(id__in=ids).filter(some_other_filters)
But I feel that's not best method for my purpose.