aboutsummaryrefslogtreecommitdiff
path: root/content/writing-scalable-app-engine.article
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2020-03-09 22:11:04 -0400
committerRuss Cox <rsc@golang.org>2020-03-11 14:10:08 +0000
commit482079d678d84e207dd9ae63266c4bd4e653886b (patch)
tree62aa3b630bbe982904f5495fe2cc53d60a87c92d /content/writing-scalable-app-engine.article
parent0b4fcd39865e575704b5928c9a8f1cd21e18e8b2 (diff)
content: wrap long lines using new program wrap.go
Wrapping long lines will make diffs easier to read for the eventual conversion to Markdown. For golang/go#33955. Change-Id: Ibcc1b5a84ccc9144b5fcdc9266f2da3e2cf3c5a3 Reviewed-on: https://go-review.googlesource.com/c/blog/+/222839 Reviewed-by: Ian Lance Taylor <iant@golang.org>
Diffstat (limited to 'content/writing-scalable-app-engine.article')
-rw-r--r--content/writing-scalable-app-engine.article23
1 files changed, 19 insertions, 4 deletions
diff --git a/content/writing-scalable-app-engine.article b/content/writing-scalable-app-engine.article
index cf020d2..c5ca023 100644
--- a/content/writing-scalable-app-engine.article
+++ b/content/writing-scalable-app-engine.article
@@ -6,12 +6,27 @@ David Symonds
* Introduction
-Back in May, we [[https://blog.golang.org/2011/05/go-and-google-app-engine.html][announced]] the Go runtime for App Engine. Since then, we've opened it up for everyone to use, added many new APIs, and improved performance. We have been thrilled by all the interesting ways that people are using Go on App Engine.
-One of the key benefits of the Go runtime, apart from working in a fantastic language, is that it has high performance. Go applications compile to native code, with no interpreter or virtual machine getting between your program and the machine.
+Back in May, we [[https://blog.golang.org/2011/05/go-and-google-app-engine.html][announced]]
+the Go runtime for App Engine.
+Since then, we've opened it up for everyone to use,
+added many new APIs, and improved performance.
+We have been thrilled by all the interesting ways that people are using Go on App Engine.
+One of the key benefits of the Go runtime,
+apart from working in a fantastic language,
+is that it has high performance.
+Go applications compile to native code, with no interpreter or virtual machine
+getting between your program and the machine.
-Making your web application fast is important because it is well known that a web site's latency has a measurable impact on user happiness, and [[https://googlewebmastercentral.blogspot.com/2010/04/using-site-speed-in-web-search-ranking.html][Google web search uses it as a ranking factor]]. Also announced in May was that App Engine would be [[http://googleappengine.blogspot.com/2011/05/year-ahead-for-google-app-engine.html][leaving its Preview status]] and transitioning to a [[https://www.google.com/enterprise/cloud/appengine/pricing.html][new pricing model]], providing another reason to write efficient App Engine applications.
+Making your web application fast is important because it is well known that
+a web site's latency has a measurable impact on user happiness,
+and [[https://googlewebmastercentral.blogspot.com/2010/04/using-site-speed-in-web-search-ranking.html][Google web search uses it as a ranking factor]].
+Also announced in May was that App Engine would be [[http://googleappengine.blogspot.com/2011/05/year-ahead-for-google-app-engine.html][leaving its Preview status]]
+and transitioning to a [[https://www.google.com/enterprise/cloud/appengine/pricing.html][new pricing model]],
+providing another reason to write efficient App Engine applications.
-To make it easier for Go developers using App Engine to write highly efficient, scalable applications, we recently updated some existing App Engine articles to include snippets of Go source code and to link to relevant Go documentation.
+To make it easier for Go developers using App Engine to write highly efficient,
+scalable applications, we recently updated some existing App Engine articles
+to include snippets of Go source code and to link to relevant Go documentation.
- [[http://code.google.com/appengine/articles/scaling/overview.html][Best practices for writing scalable applications]]