Hi,
When I create a datastore model using SearchableModel, it creates a
__searchable_text_index column, for full text search.
If I don't want all the columns to be part of the index for search,
how do I exclude columns for full text search?
i.e.
I don't want pid, site, and url to be part of the full text search.
class Product(search.SearchableModel):
pid = db.StringProperty(required=True)
title = db.StringProperty(required=True)
site = db.StringProperty(required=True)
url = db.LinkProperty(required=True)
Thanks
Jon
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---