Mercurial > public > sg101
view forums/search_indexes.py @ 791:0ca691cccf8d
Utilize select_related() for user & user profiles.
This commit also removes the caching of the avatar URL in the
avatar template tag. This is because we are now using select_related,
so we already have the profile & avatar when we get to the tag.
Thus we don't need to waste time querying the cache.
Removed an apparently unused member map template as well.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Fri, 23 May 2014 21:52:41 -0500 |
parents | ad53d929281a |
children | cf9918328c64 |
line wrap: on
line source
"""Haystack search index for the weblinks application.""" from haystack import indexes from forums.models import Forum, Topic, Post class TopicIndex(indexes.SearchIndex, indexes.Indexable): text = indexes.CharField(document=True, use_template=True) author = indexes.CharField(model_attr='user') pub_date = indexes.DateTimeField(model_attr='creation_date') def get_model(self): return Topic def index_queryset(self, using=None): return Topic.objects.filter(forum__in=Forum.objects.public_forum_ids()) def get_updated_field(self): return 'update_date' class PostIndex(indexes.SearchIndex, indexes.Indexable): text = indexes.CharField(document=True, use_template=True) author = indexes.CharField(model_attr='user') pub_date = indexes.DateTimeField(model_attr='creation_date') def get_model(self): return Post def index_queryset(self, using=None): return Post.objects.filter( topic__forum__in=Forum.objects.public_forum_ids()) def get_updated_field(self): return 'update_date'