Hi, If you take a look at the documentation: https://developers.google.com/appengine/docs/python/search/
"" There are separate quotas for simple and complex queries. A query is complex if its query string includes the name of a geopoint field or at least one OR or NOT boolean operator. A query is also complex if it uses query options to specify non-default sorting or scoring, field expressions, or snippets. Otherwise the query is simple. "" I think your query is simple and It'd be trated as simple. Maybe this can be a bug. good luck. Saludos. Moisés Belchín. 2013/10/9 force <[email protected]> > Hi, > > I execute the following simple search using Google App Engine Java Search > Service: > IndexSpec indexSpec = IndexSpec.newBuilder().setName(namespace).build(); > Index = SearchServiceFactory.getSearchService().getIndex(indexSpec); > index.search("אב"); > > where the search text is simple text but not in English. > > Google App engine Quota consider this simple search as complex search, > Does someone can tell why it is not simple search? > > Thanks > > > -- > You received this message because you are subscribed to the Google Groups > "Google App Engine" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/google-appengine. > For more options, visit https://groups.google.com/groups/opt_out. > -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/groups/opt_out.
