从外部 GAE 访问 Google 搜索 API
Access Google Search API from outside GAE
我想使用 Google 提供的 The Search API 来为我们的数据编制索引,然后对其进行搜索。问题是我们的应用程序没有进入 GAE。我找到了如何在 GAE 外部使用数据存储的方法,但找不到如何在 GAE 外部使用 Search API 的方法。问题是:真的可以从 GAE 之外的应用程序使用它吗?
PS:我们使用java.
不,搜索 API 在 GAE 的灵活环境中甚至不可用。来自 Search:
The Search service is currently unavailable outside of the standard
environment. You can host any full-text search database such as
ElasticSearch on Google Compute Engine and access it from both
the standard and flexible environments.
我想使用 Google 提供的 The Search API 来为我们的数据编制索引,然后对其进行搜索。问题是我们的应用程序没有进入 GAE。我找到了如何在 GAE 外部使用数据存储的方法,但找不到如何在 GAE 外部使用 Search API 的方法。问题是:真的可以从 GAE 之外的应用程序使用它吗?
PS:我们使用java.
不,搜索 API 在 GAE 的灵活环境中甚至不可用。来自 Search:
The Search service is currently unavailable outside of the standard environment. You can host any full-text search database such as ElasticSearch on Google Compute Engine and access it from both the standard and flexible environments.