I don't know if the Objectify library supports Search API documents., but Search API and Datastore are two different services, although it can be very useful to combine them.
Search API allows your app to define a search index (for example: "BlogComments"), and then insert search documents to the index, where each document consists of fields such as "authorName", "topic", "body" etc. Then your app can search the index for documents that match the search query (e.g. all comments with a certain word in "body"). Typically, the search documents only reflect data that is stored somewhere else, e.g. as entities in Datastore, because you want to apply advanced text search features that are not available in the original storage. For example, in Datastore you can not perform queries for partial strings. Or querying files in Google Cloud Storage through the API is only rudimentary. On 31 May 2016 at 00:40, Raunak Gupta <[email protected]> wrote: > I'm slightly confused - can the Java Search API (for full text search) be > used on Google Cloud DataStore, do so I need to use a different storage > option? If I can, do I use the Objectify library, or is there a different > library I should use? > > - Raunak > > -- > 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 https://groups.google.com/group/google-appengine. > To view this discussion on the web visit > https://groups.google.com/d/msgid/google-appengine/11fc5f40-b0e9-471d-9cf1-680810212f0b%40googlegroups.com > <https://groups.google.com/d/msgid/google-appengine/11fc5f40-b0e9-471d-9cf1-680810212f0b%40googlegroups.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- Mit freundlichen Grüßen / Kind regards i. A. Anastasios Hatzis Fon: +49 8374 930813 Fax: +49 8374 930810 Mobil: +49 1520 8592878 -- HATZIS Edelstahlbearbeitung GmbH Hojen 2 87490 Haldenwang (Allgäu) Germany Handelsregister Kempten (Allgäu): HRB 4204 Geschäftsführer: Paulos Hatzis, Charalampos Hatzis Umsatzsteuer-Identifikationsnummer: DE 128791802 GLN: 42 504331 0000 6 http://www.hatzis.de/ -- 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 https://groups.google.com/group/google-appengine. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/CAABQH8b3GVQ%2BGDowKZx50FKQFOac0ccrQ4NS5GVE7Gaws0Vi3A%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
