diff options
author | Russ Cox <rsc@golang.org> | 2020-03-09 23:54:35 -0400 |
---|---|---|
committer | Russ Cox <rsc@golang.org> | 2020-03-17 20:58:37 +0000 |
commit | af5018f64e406aaa646dae066f28de57321ea5ce (patch) | |
tree | 8db7b1f049d83d215fa9abf68851efce7b5ccadb /content/go-and-google-app-engine.article | |
parent | 86e424fac66fa90ddcb7e8d7febd4c2b07d7c59e (diff) |
content: convert to Markdown-enabled present inputs
Converted blog to Markdown-enabled present (CL 222846)
using present2md (CL 222847).
For golang/go#33955.
Change-Id: Ib39fa1ddd9a46f9c7a62a2ca7b96e117635553e8
Reviewed-on: https://go-review.googlesource.com/c/blog/+/222848
Run-TryBot: Russ Cox <rsc@golang.org>
Reviewed-by: Andrew Bonventre <andybons@golang.org>
Diffstat (limited to 'content/go-and-google-app-engine.article')
-rw-r--r-- | content/go-and-google-app-engine.article | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/content/go-and-google-app-engine.article b/content/go-and-google-app-engine.article index ec0f3ca..a1daad1 100644 --- a/content/go-and-google-app-engine.article +++ b/content/go-and-google-app-engine.article @@ -1,6 +1,7 @@ -Go and Google App Engine +# Go and Google App Engine 10 May 2011 Tags: appengine, release +Summary: Google’s App Engine provides a reliable, scalable, easy way to build and deploy applications for the web. Over a hundred thousand apps are hosted at appspot.com and custom domains using the App Engine infrastructure. Originally written for Python apps, in 2009 the system added a Java runtime. And today, at Google I/O, we’re thrilled to announce that Go will be next. It’s marked as an experimental App Engine feature for now, because it’s early days, but both the App Engine and Go teams are very excited about this milestone. David Symonds @@ -8,7 +9,7 @@ Nigel Tao Andrew Gerrand -* Introduction +## Google’s App Engine provides a reliable, scalable, easy way to build and deploy applications for the web. @@ -21,7 +22,7 @@ because it’s early days, but both the App Engine and Go teams are very excited about this milestone. By early days, we mean that it’s still rolling out. -As of today, the App Engine SDK for Go is [[http://code.google.com/p/googleappengine/downloads/list][available for download]], +As of today, the App Engine SDK for Go is [available for download](http://code.google.com/p/googleappengine/downloads/list), and we will soon enable deployment of Go apps into the App Engine hosting infrastructure. Today, through the SDK, you’ll be able to write web apps, learn about the APIs (and the language, if it’s new to you), @@ -44,8 +45,8 @@ More APIs will be added as the environment develops. The runtime provides the full Go language and almost all the standard libraries, except for a few things that don’t make sense in the App Engine environment. For instance, there is no `unsafe` package and the `syscall` package is trimmed. -(The implementation uses an expanded version of the setup in the [[https://golang.org/doc/play/][Go Playground]] -on [[https://golang.org/][golang.org]].) +(The implementation uses an expanded version of the setup in the [Go Playground](https://golang.org/doc/play/) +on [golang.org](https://golang.org/).) Also, although goroutines and channels are present, when a Go app runs on App Engine only one thread is run in a given instance. @@ -59,15 +60,15 @@ making it the first true compiled language that runs on App Engine. Go on App Engine makes it possible to deploy efficient, CPU-intensive web applications. -If you want to know more, read the [[http://code.google.com/appengine/docs/go/][documentation]] -(start with “[[http://code.google.com/appengine/docs/go/gettingstarted/][Getting Started]]”). -The libraries and SDK are open source, hosted at [[http://code.google.com/p/appengine-go/][http://code.google.com/p/appengine-go/]]. -We’ve created a new [[http://groups.google.com/group/google-appengine-go][google-appengine-go]] mailing list; +If you want to know more, read the [documentation](http://code.google.com/appengine/docs/go/) +(start with “[Getting Started](http://code.google.com/appengine/docs/go/gettingstarted/)”). +The libraries and SDK are open source, hosted at [http://code.google.com/p/appengine-go/](http://code.google.com/p/appengine-go/). +We’ve created a new [google-appengine-go](http://groups.google.com/group/google-appengine-go) mailing list; feel free to contact us there with App Engine-specific questions. -The [[http://code.google.com/p/googleappengine/issues/list][issue tracker for App Engine]] +The [issue tracker for App Engine](http://code.google.com/p/googleappengine/issues/list) is the place for reporting issues related to the new Go SDK. -The Go App Engine SDK is [[http://code.google.com/p/googleappengine/downloads/list][available]] +The Go App Engine SDK is [available](http://code.google.com/p/googleappengine/downloads/list) for Linux and Mac OS X (10.5 or greater); we hope a Windows version will also be available soon. |