您的位置:首页 > 数据库 > Memcache

解决php-memcache set,用python-memcache get报错的问题

2015-03-23 21:26 561 查看
最近项目需要,在web端用php进行memcache的操作,后台有个python脚本需要去拿memcache里的数据。于是出现报错如下:

Traceback (most recent call last):

File "<stdin>", line 1, in <module>

File "build/bdist.linux-x86_64/egg/memcache.py", line 898, in get

File "build/bdist.linux-x86_64/egg/memcache.py", line 882, in _get

File "build/bdist.linux-x86_64/egg/memcache.py", line 871, in _unsafe_get

File "build/bdist.linux-x86_64/egg/memcache.py", line 1034, in _recv_value

UnboundLocalError: local variable 'val' referenced before assignmen

google了一把,查到时python-memcached的一个bug

https://blog.serverdensity.com/notes-on-using-memcached-through-php-and-python/

经过实验,如果是php-memcache版本是2.2的时候,python-memcache可以正常使用

如果是3.+ 就会出现上面的报错。

解决方法,装另外的python-pylibmc插件,可以很好的解决,

安装教程在这里

http://jfreebird.iteye.com/blog/936889
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: