Mercurial > public > sg101
comparison gpp/podcast/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 |
comparison
equal
deleted
inserted
replaced
466:c78c6e007e61 | 467:b910cc1460c8 |
---|---|
1 """Haystack search index for the news application.""" | 1 """Haystack search index for the news application.""" |
2 from haystack.indexes import * | 2 from haystack.indexes import * |
3 from haystack import site | 3 from haystack import site |
4 from queued_search.indexes import QueuedSearchIndex | 4 from custom_search import CondQueuedSearchIndex |
5 | 5 |
6 from podcast.models import Item | 6 from podcast.models import Item |
7 | 7 |
8 | 8 |
9 class ItemIndex(QueuedSearchIndex): | 9 class ItemIndex(CondQueuedSearchIndex): |
10 text = CharField(document=True, use_template=True) | 10 text = CharField(document=True, use_template=True) |
11 author = CharField(model_attr='author') | 11 author = CharField(model_attr='author') |
12 pub_date = DateTimeField(model_attr='pubdate') | 12 pub_date = DateTimeField(model_attr='pubdate') |
13 | 13 |
14 def get_updated_field(self): | 14 def get_updated_field(self): |