Is there any simple way to create search for Google App Engine for specific datastore table. Just want to create basic text search for this.
+1
A:
If you want full-text search over a Text
field in a Model
, try something like Bill Katz's SearchableModel
.
Jason Hall
2010-06-26 18:04:09
A:
You can only do a full-text search not partials.
What you could do if you really need to do a simple search and depending on how many records you are going to have, is create a cron job that creates a blobstore with the table key and the field you want to search. Then just use the blobstore for your searches. Remove the lines that dont have the search field and display the field as the result , with the key as your link to the relevant data.
John
2010-09-01 12:29:10
This is cool, thanks.
Ivan Slaughter
2010-10-24 03:55:20