python2.7連線操作redis的幾種方法

chenfeng發表於2018-06-21
python版本:2.7
首先需要先安裝redis模組:
wget
tar zxvf redis-2.10.3.tar.gz
cd redis-2.10.3
python setup.py install 
備註:安裝方法可以參考INSTALL檔案內容
#cat INSTALL
Please use
 python setup.py install
and report errors to Andy McCurdy (sedrik@gmail.com)


然後開始匯入redis模組
[root@test ~/python]#python
Python 2.7.12 (default, Jun  1 2018, 14:00:01) 
[GCC 4.4.7 20120313 (Red Hat 4.4.7-18)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import redis
>>> 

以下是操作redis的四種方法:
#cat 1.py
#encoding=utf-8   
import redis
r =  redis.StrictRedis(host='localhost', port=6379)
print r.ping()


#cat 2.py
#encoding=utf-8
import redis
r = redis.StrictRedis(host='127.0.0.1', port=6379, db=0)
print r.ping()


#cat 3.py
#encoding=utf-8
import redis
pool = redis.ConnectionPool(host='localhost', port=6379, decode_responses=True)
r = redis.Redis(connection_pool=pool)
print r.ping()


#cat 4.py
# -*- encoding: UTF-8 -*-  
import redis 
r = redis.Redis(host='localhost', port=6379, decode_responses=True)  
print r.ping()

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/15498/viewspace-2156432/,如需轉載,請註明出處,否則將追究法律責任。

相關文章