在我的模型中,当我使用以下默认值引用 SphinxSearch 时:
from djangosphinx.models import SphinxSearch
class Blog(models.Model):
...
search = SphinxSearh()
全文搜索工作正常。但是当我weights
按照记录给出属性时:
search = SphinxSearch(
weights={'title': 10, 'body': 5, 'tags': 10}
)
搜索提出:SphinxClient instance has no attribute 'SetFieldWeights'
我必须遗漏一些明显的东西,因为我似乎是谷歌搜索后唯一遇到这个问题的人。任何帮助深表感谢。