推荐一个不错的memcached教程,py开发时候也会有用

推荐一个不错的memcached教程,py开发时候也会有用

地址(我的博客哦 ):

http://hi.baidu.com/smallfish7788/blog/item/4dacd03e814591c47d1e7198.html
谢谢分享 不错 一直在找这个
不过好像讲的是perl连接的 有基于python的么
你可以去
ftp://ftp.tummy.com/pub/python-memcached/
下载Python版API

简单使用:
>>> import memcache
>>> mc = memcache.Client(['127.0.0.1:11211'], debug=0) # 构造mc对象
>>> mc.set("username", "smallfish",1) # 写memcached
>>> mc.get("username") # 读取
>>> mc.delete("username")  # 删除

这个还是很简单的,还有更多方法参照下API
不错,谢谢分享