MCPcopy Index your code
hub / github.com/django-haystack/django-haystack / get_search_queryset

Method get_search_queryset

haystack/manager.py:9–13  ·  view source on GitHub ↗

Returns a new SearchQuerySet object. Subclasses can override this method to easily customize the behavior of the Manager.

(self)

Source from the content-addressed store, hash-verified

7 self.using = using
8
9 def get_search_queryset(self):
10 """Returns a new SearchQuerySet object. Subclasses can override this method
11 to easily customize the behavior of the Manager.
12 """
13 return SearchQuerySet(using=self.using)
14
15 def get_empty_query_set(self):
16 return EmptySearchQuerySet(using=self.using)

Callers 15

allMethod · 0.95
filterMethod · 0.95
excludeMethod · 0.95
filter_andMethod · 0.95
filter_orMethod · 0.95
order_byMethod · 0.95
highlightMethod · 0.95
boostMethod · 0.95
facetMethod · 0.95
withinMethod · 0.95
dwithinMethod · 0.95
distanceMethod · 0.95

Calls 1

SearchQuerySetClass · 0.90

Tested by 1

filterMethod · 0.64