Go App Engine packages
Перейти к файлу
Dave Day bc32c3d353 appengine: name returned parameters on SignBytes to improve documentation
Change-Id: I6dcb7e070a0c5f84772e5af2c593f4390eefeb7a
2015-04-07 06:55:24 +00:00
channel Remove internal.CallOptions entirely, and use the context's timeout for API calls. 2015-01-28 16:44:06 +11:00
datastore appengine/datastore: update docs to reflect new limits 2015-04-07 06:51:00 +00:00
delay Remove internal.CallOptions entirely, and use the context's timeout for API calls. 2015-01-28 16:44:06 +11:00
demos Convert tree from appengine.Context to context.Context. 2015-01-21 09:10:09 +11:00
file Remove internal.CallOptions entirely, and use the context's timeout for API calls. 2015-01-28 16:44:06 +11:00
image Remove internal.CallOptions entirely, and use the context's timeout for API calls. 2015-01-28 16:44:06 +11:00
internal appengine: Allow port to be specified with PORT environment variable. 2015-03-05 20:56:12 -08:00
log Update example code to use current log API. 2015-03-23 09:55:20 +11:00
mail Update example code to use current log API. 2015-03-23 09:55:20 +11:00
memcache appengine/memcache: fix doc typo 2015-04-07 06:51:22 +00:00
module Remove internal.CallOptions entirely, and use the context's timeout for API calls. 2015-01-28 16:44:06 +11:00
remote_api Remove internal.CallOptions entirely, and use the context's timeout for API calls. 2015-01-28 16:44:06 +11:00
search Remove internal.CallOptions entirely, and use the context's timeout for API calls. 2015-01-28 16:44:06 +11:00
taskqueue Use appengine_internal/base instead of google.golang.org/appengine/internal/base for classic __go__ virtual APIs. 2015-02-20 09:18:33 +11:00
urlfetch Remove internal.CallOptions entirely, and use the context's timeout for API calls. 2015-01-28 16:44:06 +11:00
user Add versions of the internal APIs that work on classic App Engine. 2015-02-19 14:24:28 +11:00
xmpp Remove internal.CallOptions entirely, and use the context's timeout for API calls. 2015-01-28 16:44:06 +11:00
.travis.yml appengine: Add build status to README, clean useless echo 2014-12-16 16:22:54 +11:00
LICENSE Add LICENSE file. 2014-02-07 14:33:00 +11:00
README.md Convert tree from appengine.Context to context.Context. 2015-01-21 09:10:09 +11:00
appengine.go Convert tree from appengine.Context to context.Context. 2015-01-21 09:10:09 +11:00
appengine_test.go appengine: move GeoPoint from the search package to the main appengine one. 2014-03-27 20:49:36 +11:00
errors.go Remove appengine.IsCapabilityDisabled. 2014-02-06 15:01:18 +11:00
identity.go appengine: name returned parameters on SignBytes to improve documentation 2015-04-07 06:55:24 +00:00
namespace.go Remove the final traces of internal.VirtAPI and convert namespaces to context values. 2015-01-29 13:43:14 +11:00
namespace_test.go Add appengine.Namespace func. 2014-01-14 18:24:47 +11:00
timeout.go Remove internal.CallOptions entirely, and use the context's timeout for API calls. 2015-01-28 16:44:06 +11:00

README.md

Go App Engine for Managed VMs

Build Status

This repository supports the Go runtime for Managed VMs on App Engine. It provides APIs for interacting with App Engine services. Its canonical import path is google.golang.org/appengine.

See https://cloud.google.com/appengine/docs/go/managed-vms/ for more information.

Directory structure

The top level directory of this repository is the appengine package. It contains the basic APIs (e.g. appengine.NewContext) that apply across APIs. Specific API packages are in subdirectories (e.g. datastore).

There is an internal subdirectory that contains service protocol buffers, plus packages required for connectivity to make API calls. App Engine apps should not directly import any package under internal.

Updating a Go App Engine app

This section describes how to update a traditional Go App Engine app to run on Managed VMs.

1. Update YAML files

The app.yaml file (and YAML files for modules) should have these new lines added:

vm: true
manual_scaling:
  instances: 1

See https://cloud.google.com/appengine/docs/go/modules/#Go_Instance_scaling_and_class for details.

2. Update import paths

The import paths for App Engine packages are now fully qualified, based at google.golang.org/appengine. You will need to update your code to use import paths starting with that; for instance, code importing appengine/datastore will now need to import google.golang.org/appengine/datastore. You can do that manually, or by running this command to recursively update all Go source files in the current directory: (may require GNU sed)

sed -i '/"appengine/{s,"appengine,"google.golang.org/appengine,;s,appengine_,appengine/,}' \
  $(find . -name '*.go')

3. Update code using deprecated, removed or modified APIs

Most App Engine services are available with exactly the same API. A few APIs were cleaned up, and some are not available yet. This list summarises the differences:

  • appengine.Context has been replaced with the Context type from golang.org/x/net/context.
  • Logging methods that were on appengine.Context are now functions in google.golang.org/appengine/log.
  • appengine.Timeout has been removed. Use context.WithTimeout instead.
  • appengine.Datacenter now takes a context.Context argument.
  • datastore.PropertyLoadSaver has been simplified to use slices in place of channels.
  • search.FieldLoadSaver now handles document metadata.
  • taskqueue.QueueStats no longer takes a maxTasks argument. That argument has been deprecated and unused for a long time.
  • appengine/aetest, appengine/blobstore, appengine/cloudsql and appengine/runtime have not been ported yet.
  • appengine.BackendHostname and appengine.BackendInstance were for the deprecated backends feature. Use appengine.ModuleHostnameand appengine.ModuleName instead.
  • appengine.IsCapabilityDisabled and appengine/capability are obsolete.
  • Most of appengine/file is deprecated. Use Google Cloud Storage instead.
  • appengine/socket is deprecated. Use the standard net package instead.