1
我想輸出一個我在memcache中設置的值,但是我得到None,我做錯了什麼?python memcache中沒有設置值
import memcache
mc = memcache.Client(["127.0.0.1:11211"])
mc.set("foo","bar")
foo = mc.get("foo")
print foo
>>None
我想輸出一個我在memcache中設置的值,但是我得到None,我做錯了什麼?python memcache中沒有設置值
import memcache
mc = memcache.Client(["127.0.0.1:11211"])
mc.set("foo","bar")
foo = mc.get("foo")
print foo
>>None
我沒有安裝memcached二進制應用程序。 對於linux下可以安裝&從源代碼編譯http://memcached.org/ 找到您可以按照下面的教程windows用戶的最新版本:http://www.codeforest.net/how-to-install-memcached-on-windows-machine
什麼memcached的日誌說? – soulseekah
什麼是memcache? – martineau
@martineau我會猜測http://gijsbert.org/cmemcache/index.html或更可能http://pypi.python.org/pypi/python-memcached/ – soulseekah