I can only find exact phrase matching for queries in the experimental Search API for Google App Engine. For example the query \'best prices hotel\' will only match that exac
You should be able to use the '~' operator to rewrite queries to include plurals. E.g., ~hotel or ~"best prices hotel".
~hotel
~"best prices hotel"
Documentation about this operator should be added in the next app engine SDK release.