[google-appengine] Re: Java Search API on DataStore

2016-06-01 Thread Raunak Gupta
I was mainly looking to provide AutoComplete functionality, but it seems to me I might be better off using Algolia or ElasticSearch instead. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving

[google-appengine] Re: Java Search API on DataStore

2016-06-01 Thread Nick
If you want autocomplete from the start of the word/phrase you can do that with the datastore alone and a basic string query. If you want it from mid phrase, neither datastore or search API are particularly great at this (you need to store all fragments yourself) Algolia will have you up and ru