标签:http io os 使用 ar for sp div art
想知道redis针对各种编程语言推荐的接口API实现,请参考http://redis.io/clients/
选择python语言,则使用https://github.com/andymccurdy/redis-py
redis-py requires a running Redis server. See Redis‘s quickstart(http://redis.io/topics/quickstart) for installation instructions.
To install redis-py, simply:
$ sudo pip install redis
or alternatively (you really should be using pip though):
$ sudo easy_install redis
or from source:
$ sudo python setup.py install
>>> import redis
>>> r = redis.StrictRedis(host=‘localhost‘, port=6379, db=0)
>>> r.set(‘foo‘, ‘bar‘)
True
>>> r.get(‘foo‘)
‘bar‘
The official Redis command documentation does a great job of explaining each command in detail. redis-py exposes two client classes that implement these commands. The StrictRedis class attempts to adhere to the official command syntax. There are a few exceptions:
标签:http io os 使用 ar for sp div art
原文地址:http://www.cnblogs.com/zxpo/p/4026741.html