view gpp/ygroup/search_indexes.py @ 467:b910cc1460c8

Add the ability to conditionally add model instances to the search index on update. This is not perfect, as some instances should be deleted from the index if they are updated such that they should not be in the index anymore. Will think about and address that later.
author Brian Neal <bgneal@gmail.com>
date Sun, 24 Jul 2011 18:12:20 +0000
parents 79240675b903
children 3b30286adba5
line wrap: on
line source
"""
Haystack search index for the Yahoo Group archives application.

"""
from haystack.indexes import *
from haystack import site
from custom_search import CondQueuedSearchIndex

from ygroup.models import Post


class PostIndex(CondQueuedSearchIndex):
    text = CharField(document=True, use_template=True)
    pub_date = DateTimeField(model_attr='creation_date')

    def get_updated_field(self):
        return 'creation_date'


site.register(Post, PostIndex)