Hi,
When I use bulkupload to upload data that the model is
SearchableModel, it does not create the __searchable_text_index.
It only updates the fields.
When i just do a put(), it creates the __searchable_text_index.
i.e.
class PageIndex(search.SearchableModel):
title = db.StringProperty(required=True)
class PageIndexLoader(bulkloader.Loader):
def __init__(self):
bulkloader.Loader.__init__(self, 'PageIndex',
[
('title', str)
])
loaders = [PageIndexLoader]
What am i doing wrong when doing bulkupload? How can i update
PageIndex via bulkupload and have the __searchable_text_index?
Thanks
John
--
You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-appengine?hl=en.