4

我正在尝试在我的 Django 应用程序中使用 Memcache,但似乎我的配置中缺少某些内容。任何帮助将不胜感激,谢谢!

$ python manage.py shell
Python 2.7.1 (r271:86832, Jul 31 2011, 19:30:53) 
[GCC 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2335.15.00)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
(InteractiveConsole)
>>> from django.core.cache import cache
>>> cache.set('my_key', 'hello, world!', 30)
>>> print cache.get('my_key')
None
>>> 

设置.py

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

已安装的 API:

$ pypm install python-memcached
$ brew install memcached
$ brew install libmemcached
4

2 回答 2

7

我认为我的配置有一些问题,所以我刚刚使用 MacPorts 再次安装了 Memcache

$ sudo port install memcached 

然后我运行了 Memcache,它可以工作了

$ memcached -vv

这些说明已经在 Mac OS X 10.7.5 (Lion) 上测试过

欲了解更多信息,请访问本网站

于 2013-08-22T16:44:38.043 回答
4

谢谢,只是想补充一点,它在 ubuntu 机器上也对我有用......

在 ubuntu 中安装:

$sudo apt-get install memcached
于 2014-05-26T07:29:19.827 回答