File tree Expand file tree Collapse file tree 2 files changed +20
-0
lines changed
appengine/flexible/memcache Expand file tree Collapse file tree 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+
120## Running locally
221
322Refer to the [ top-level README] ( ../README.md ) for instructions on running and deploying.
Original file line number Diff line number Diff line change 2323
2424# [START client]
2525# Environment variables are defined in app.yaml.
26+ # Note: USE_GAE_MEMCACHE is in whitelist-only alpha. See README.md
2627if os .environ .get ('USE_GAE_MEMCACHE' ):
2728 MEMCACHE_SERVER = ':' .join ([
2829 os .environ .get ('GAE_MEMCACHE_HOST' , 'localhost' ),
You can’t perform that action at this time.
0 commit comments