如何在Google Cloud AppEngine上为Django配置Memcache?

时间:2018-11-11 20:31:46

标签: django google-app-engine memcached

在我的设置中,我有:

CACHES = {
    'default': {
        'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
        'LOCATION': '127.0.0.1:11211',
    }
}

并且我已经安装了 https://pypi.org/project/python-memcached/

还需要什么吗?

1 个答案:

答案 0 :(得分:0)

在GCP上为Django启用Memcache的方式取决于您所使用的产品(App Engine,Compute Engine,Kubernetes Engine)[1]

由于您正在使用App Engine,因此它是内置的。您可以在此处找到有关如何将Memcache与GCP结合使用的示例。 [2]

[1]如何在GCP for Django上安装Memcache:  https://cloud.google.com/python/django/#caches

[2] GCP文档上的Memcache示例: https://cloud.google.com/appengine/docs/standard/python/memcache/examples?hl=en