I am developing a database application using Google Cloud Datastore, but I donβt see a built-in way to full-text search in fields. Is there a solution for google clouds?
The alternative that I see is either:
Does the full-text search contain an application (read on each line, find matches)
exchange the fields that you want to index by the full-text index into some other product, such as Google Cloud Sql (mysql), and use its full-text search capabilities.
source
share