Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Implementing a wildcard search in Google App Engine/Java

I'm trying to implement a basic 'search' system across multiple entities. I know that there is no like operator support in GQL, but that leaves with the problem of an efficient, straightforward way of performing searches across my entities.

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

like image 503
Robert Munteanu Avatar asked Nov 14 '22 09:11

Robert Munteanu


1 Answers

Have a look at the answer to this question which suggests Lucene.

like image 116
tgdavies Avatar answered Nov 17 '22 00:11

tgdavies