Reputation: 152
Searching for document containing a word e.g. London works. How do i define a search for a documents with (substring):
Documentation: https://developers.google.com/appengine/docs/java/search/overview
Upvotes: 2
Views: 312
Reputation: 4860
App Engine's full text search API does not support substring matching.
However you can invent a workaround for this. See this answer for a Python-based solution that should translate easily to Java.
Upvotes: 1