File tree 2 files changed +20
-0
lines changed
appengine/flexible/memcache
2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change
1
+ ## Note
2
+
3
+ This sample demonstrates connecting to existing Memcache servers, or the
4
+ built-in Memcache server.
5
+
6
+ A managed option for Memcache is RedisLabs:
7
+
8
+ https://cloud.google.com/appengine/docs/flexible/python/using-redislabs-memcache
9
+
10
+ You can install and manage a Memcache server on Google Compute Engine. One way
11
+ to do so is to use a Bitnami click-to-deploy:
12
+
13
+ https://bitnami.com/stack/memcached/cloud/google
14
+
15
+ Built-in Memcache for Flexible environments is currently in a whitelist-only alpha. To have your project whitelisted,
16
+ see the signup form here:
17
+
18
+ https://cloud.google.com/appengine/docs/flexible/python/upgrading#memcache_service
19
+
1
20
## Running locally
2
21
3
22
Refer to the [ top-level README] ( ../README.md ) for instructions on running and deploying.
Original file line number Diff line number Diff line change 23
23
24
24
# [START client]
25
25
# Environment variables are defined in app.yaml.
26
+ # Note: USE_GAE_MEMCACHE is in whitelist-only alpha. See README.md
26
27
if os .environ .get ('USE_GAE_MEMCACHE' ):
27
28
MEMCACHE_SERVER = ':' .join ([
28
29
os .environ .get ('GAE_MEMCACHE_HOST' , 'localhost' ),
You can’t perform that action at this time.
0 commit comments