michael@ubuntu:~$ wget -q http://peak.telecommunity.com/dist/ez_setup.py michael@ubuntu:~$ sudo python ez_setup.py michael@ubuntu:~$ sudo python -m easy_install redis hiredis michael@ubuntu:~$ pythonPython 2.7.3 (default, Jun 22 2015, 19:33:41) [GCC 4.6.3] on linux2Type "help", "copyright", "credits" or "license" for more information.
>>> import redis
>>> conn = redis.Redis()
>>> conn.set('name',"Tom")True
>>> conn.get('name')
'Tom'
>>>
Python基于HiRedis访问Redis
原创
©著作权归作者所有:来自51CTO博客作者yuanzhitang的原创作品,请联系作者获取转载授权,否则将追究法律责任
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章