Mercurial > public > sg101
diff 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 diff
--- a/gpp/ygroup/search_indexes.py Sun Jul 24 02:35:17 2011 +0000 +++ b/gpp/ygroup/search_indexes.py Sun Jul 24 18:12:20 2011 +0000 @@ -4,12 +4,12 @@ """ from haystack.indexes import * from haystack import site -from queued_search.indexes import QueuedSearchIndex +from custom_search import CondQueuedSearchIndex from ygroup.models import Post -class PostIndex(QueuedSearchIndex): +class PostIndex(CondQueuedSearchIndex): text = CharField(document=True, use_template=True) pub_date = DateTimeField(model_attr='creation_date')