Search a string beginning with a prefix in Google App Engine Datastore
I want to search all entities whose name starts with a specific string, is this possible in Datastore? I've tried this: q = datastore.NewQuery("Places").Filter("Name > ", "a") But it doesn't work. If this is not possible, what alternative solution can you suggest to me? BigQuery? BigTable or other services on App Engine? This is something that is possible, but with a combination of 2 inequality filters. Let's say you want to list Places that have the "li" prefix. This can be described with a query that lists Places that are greater than (or equal to) "li" and less than a prefix that is the