干草堆:只索引一些条目

时间:2013-09-16 01:12:01

标签: django django-haystack

我正在使用Haystack在我的网站上执行搜索,其中一个被搜索的模型有一个字段

searchable = models.BooleanField()

是否可以告诉Haystack仅索引具有

的条目
searchable = True

1 个答案:

答案 0 :(得分:2)

也许你需要index_queryset

class YourIndex(...):
    def index_queryset(self, using=None):
        return YourModel.objects.filter(searchable=True)