Mercurial > public > sg101
view gpp/weblinks/search_indexes.py @ 395:e10fa0d8e7ad
Fixing #192; cache some forum stats and have them be computed outside of the request/response cycle. Update the template tag to just read the cache.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Fri, 25 Mar 2011 00:27:10 +0000 |
parents | 79240675b903 |
children | b910cc1460c8 |
line wrap: on
line source
"""Haystack search index for the weblinks application.""" from haystack.indexes import * from haystack import site from queued_search.indexes import QueuedSearchIndex from weblinks.models import Link class LinkIndex(QueuedSearchIndex): text = CharField(document=True, use_template=True) author = CharField(model_attr='user') pub_date = DateTimeField(model_attr='date_added') def get_queryset(self): return Link.public_objects.all() def get_updated_field(self): return 'update_date' site.register(Link, LinkIndex)