使用 Golang 对数据存储实体进行 GAE 全文搜索 API

GAE Full Text Search API on datastore entities using Golang

我听说我们 app engine Search API support for Golang. but it is not clear if we have can use this search API on GAE datastore entities (the Google IO 2011 video 说这是可能的,但不确定是否真的支持使用 Golang)。对此有什么想法吗?以及任何带有示例的好文档?非常感谢您的帮助。

您不能 运行 对数据存储实体进行全文搜索。要执行全文搜索,您需要在独立于数据存储的文本搜索索引中创建单独的文档。如果您想对数据存储中的数据进行文本搜索,请对其进行迭代并从全文搜索索引中的实体创建文档。

对于文档,您提供的 link

https://cloud.google.com/appengine/docs/go/search/

里面有资料。