Haystack more_like_this returns all
问题 I am using Django, haystack, solr, to do searching. Ive am able to search and now I would like to find similar items using more_like_this. When I try to use the more_like_this functionality I get back all of the objects that are of that model type instead of just the ones that closely match it. Here is some code to show you how I am using it: def resource_view(request, slug): resource = Resource.objects.get(slug=slug) versions = Version.objects.get_for_object(resource) related =