Implementing wildcard searches in Google App Engine / Java

I am trying to implement a basic search engine on several objects. I know that there is no operator support in GQL , but this leaves the problem of an efficient and easy way to perform a search on my objects.

What is the idiomatic way of doing such searches in Google App Engine / Java?

+5
source share
2 answers

Take a look at this question that Lucene suggests.

+1
source

Are you looking for the Datastore Java API ?

0
source

All Articles