摘要: 安装python的memcached的模块pip install python-memcachedimport memcache host_port = '127.0.0.1:11211' #memcache的ip和端口 mc = memcache.Client([host_port], debug=True) #debug表示开启调试, mc.set('name','... 阅读全文
posted @ 2019-11-05 15:48 eudaemonia 阅读(232) 评论(0) 推荐(0) 编辑