[appengine-java] searchable datastore

2010-03-05 Thread Prashant Gupta
Hi, I want to make my app's data searchable. is there any library or tool available which can make my task easier? Thanks. -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To post to this group, send email to google-appengine-j...

Re: [appengine-java] searchable datastore

2010-03-07 Thread Gal Dolber
I am using a "List tags" property on my searchable models, I fill it when I put the entities with all the matches I will like to have, and I query them like query.filter("tags", "SomeString"); Regards 2010/3/6 Prashant Gupta > Hi, > > I want to make my app's data searchable. is there any librar

Re: [appengine-java] searchable datastore

2010-03-07 Thread yjun hu
you can try to use compass for searching. and a simple demo here: http://hapeblog.appspot.com/blog.shtml?id=7002 On Sun, Mar 7, 2010 at 2:13 PM, Gal Dolber wrote: > I am using a "List tags" property on my searchable models, I fill > it when I put the entities with all the matches I will like t