File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ is supported by all major servers but usually has a less-than-optimal
6
6
performance.
7
7
8
8
This is also the way you can use a Flask application on Google's
9
- `AppEngine `_, there however the execution does happen in a CGI-like
9
+ `App Engine `_, there however the execution does happen in a CGI-like
10
10
environment. The application's performance is unaffected because of that.
11
11
12
12
.. admonition :: Watch Out
@@ -15,9 +15,9 @@ environment. The application's performance is unaffected because of that.
15
15
have in your application file, is inside an ``if __name__ ==
16
16
'__main__': `` or moved to a separate file. Just make sure it's not
17
17
called because this will always start a local WSGI server which we do
18
- not want if we deploy that application to CGI / appengine .
18
+ not want if we deploy that application to CGI / app engine .
19
19
20
- .. _ AppEngine : http://code.google.com/appengine/
20
+ .. _ App Engine : http://code.google.com/appengine/
21
21
22
22
Creating a `.cgi ` file
23
23
----------------------
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ memcached server then::
34
34
from werkzeug.contrib.cache import MemcachedCache
35
35
cache = MemcachedCache(['127.0.0.1:11211'])
36
36
37
- If you are using appengine , you can connect to the appengine memcache
37
+ If you are using App Engine , you can connect to the App Engine memcache
38
38
server easily::
39
39
40
40
from werkzeug.contrib.cache import GAEMemcachedCache
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ that uses decorators has to be imported upfront or Flask will never
8
8
actually find your function.
9
9
10
10
This can be a problem if your application has to import quick. It might
11
- have to do that on systems like Google's AppEngine or other systems. So
11
+ have to do that on systems like Google's App Engine or other systems. So
12
12
if you suddenly notice that your application outgrows this approach you
13
13
can fall back to a centralized URL mapping.
14
14
You can’t perform that action at this time.
0 commit comments