码迷,mamicode.com
首页 > 编程语言 > 详细

python---windows下安装和使用memcache

时间:2018-03-19 20:56:21      阅读:279      评论:0      收藏:0      [点我收藏+]

标签:win   cache   post   html   .exe   AC   star   ini   deb   

windows版本下memcache地址http://www.runoob.com/memcached/window-install-memcached.html

注意当选择版本>=1.45时需要设置,将 memcached 添加来任务计划表中

schtasks /create /sc onstart /tn memcached /tr "‘c:\memcached\memcached.exe‘ -m 512"

然后在命令行中开启服务:

C:\Users\Administrator>memcached  -m 10 -u root -l 127.0.0.1 -p 8081 -c 256 -P c:\memcached.pid

在python中安装memcache模块

pip3 install python-memcached

python代码测试:

import memcache

mc  = memcache.Client([127.0.0.1:8081],debug=True)
mc.set(foo,"bar")
ret= mc.get(foo)
print(ret)

输出:bar,成功安装

更多知识扩展:点击此处

python---windows下安装和使用memcache

标签:win   cache   post   html   .exe   AC   star   ini   deb   

原文地址:https://www.cnblogs.com/ssyfj/p/8604428.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!