Google Cloud Datastore: Full text search?

full-text-search, google-cloud-datastore

Solution

You might want to look into the App Engine search API as an alternative to duplicating fields into Cloud SQL for full text search.

You still need to duplicate the data into documents/indexes but you only pay per queries and storage.

Problem

I am developing a database app using Google Cloud Datastore but don't see any built-in way of doing full-text search on fields. Is there a google-cloud-native solution? The alternative I see is either: Do full text search application side (read in each row, find matches) dupe the fields that need to be full-text-indexed into some other product like Google Cloud Sql (mysql) and use it's full-text-search capabilities instead.

Original source