Jeff, how would one use the lower level Java API to perform a text search on a field of a given type?
For example, if you had an Object with a field of type String which stored keywords such as: String keywords = "tree, grass, green" is there an easy way to say "retrieve all types which has the term 'green' as a given keyword"? Thanks On Jun 2, 9:27 pm, "Jeff S (Google)" <[email protected]> wrote: > Hi sunabozu, > > Are you planning to use the Python runtime or the Java runtime? For dynamic > properties in Python, I recommend looking at db.Expando, for Java, you can > use the low level datastore API (DatastoreService). Full text search can be > a bit tricky at the moment, but there are some techniques which can get most > of the desired effects. The Python SDK includes a SearchableEntity which > attempts to extract search terms from a block of text (uses longer words and > eliminates commonly used ones): > > http://code.google.com/p/googleappengine/source/browse/trunk/python/g... > > I'm also aware of a feature request for a more fully featured text search: > > http://code.google.com/p/googleappengine/issues/detail?id=217 > > Thank you, > > Jeff > > On Sun, May 31, 2009 at 3:56 AM, sunabozu <[email protected]> wrote: > > > Hi. > > I need a model with full text search and dynamic properties. It is > > possible? > > --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
