django-sphinx のドキュメントは、django-sphinx レイヤーが複数のインデックスに対するいくつかの基本的なクエリもサポートしていることを示しています。
http://github.com/dcramer/django-sphinx/blob/master/README.rst
from djangosphinx.models import SphinxSearch
SphinxSearch('index1 index2 index3').query('hello')
SphinxSearch には query() 関数が含まれていないようです。また、django-sphinx のドキュメントに記載されているように、sphinx.conf sql_query 構成に content_type を含めようとしました。何も機能していません。
Traceback (most recent call last):
File "<console>", line 1, in <module>
AttributeError: 'SphinxSearch' object has no attribute 'query'
スフィンクスの複数のインデックスからランク付けされた結果を取得する方法について、誰でも光を当てることができますか