Its a search able model ? The documentation says they don't need indexes.
Can you please advice me what index I should add ?
Here is my query below.
def db_visas(keyword, offset):
visas=[]
query = search.SearchableQuery('Visa')
query.Search(keyword)
for result in query.Get(101, offset):
visas.append(result)
return visas
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---