comparison 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
comparison
equal deleted inserted replaced
466:c78c6e007e61 467:b910cc1460c8
2 Haystack search index for the Yahoo Group archives application. 2 Haystack search index for the Yahoo Group archives application.
3 3
4 """ 4 """
5 from haystack.indexes import * 5 from haystack.indexes import *
6 from haystack import site 6 from haystack import site
7 from queued_search.indexes import QueuedSearchIndex 7 from custom_search import CondQueuedSearchIndex
8 8
9 from ygroup.models import Post 9 from ygroup.models import Post
10 10
11 11
12 class PostIndex(QueuedSearchIndex): 12 class PostIndex(CondQueuedSearchIndex):
13 text = CharField(document=True, use_template=True) 13 text = CharField(document=True, use_template=True)
14 pub_date = DateTimeField(model_attr='creation_date') 14 pub_date = DateTimeField(model_attr='creation_date')
15 15
16 def get_updated_field(self): 16 def get_updated_field(self):
17 return 'creation_date' 17 return 'creation_date'