python與redis交互


相關內容:

  • redis模塊的使用
    • 安裝模塊
    • 導入模塊
    • 鏈接方式
    • 鏈接池
    • 操做
      • 設置值
      • 獲取值
  • 管道
  • 事務
  • 訂閱\發佈

 首發時間:2018-03-14 15:02html


python可使用redis模塊來跟redis交互python


redis模塊的使用:

 

 

  • 安裝模塊: pip3 install redis
  • 導入模塊:import redis
  • 鏈接方式:
    • 嚴格鏈接模式:r=redis.StrictRedis(host="",port=)
    • 更Python化的鏈接模式:r=redis.Redis(host="",port=)
    • StrictRedis用於實現大部分官方的命令,並使用官方的語法和命令
    • Redis與StrictRedis的區別是:Redis是StrictRedis的子類,用於向前兼容舊版本的redis-py,而且這個鏈接方式是更加"python化"的

 

  • 鏈接池:
    • 爲了節省資源,減小屢次鏈接損耗,鏈接池的做用至關於總攬多個客戶端與服務端的鏈接,當新客戶端須要鏈接時,只須要到鏈接池獲取一個鏈接便可,實際上只是一個鏈接共享給多個客戶端
      import redis
      
      pool= redis.ConnectionPool(host='localhost',port=6379,decode_responses=True)
      
      r=redis.Redis(connection_pool=pool)
      r2=redis.Redis(connection_pool=pool)
      r.set('apple','a')
      print(r.get('apple'))
      r2.set('banana','b')
      print(r.get('banana'))
      
      print(r.client_list())
      print(r2.client_list())#能夠看出兩個鏈接的id是一致的,說明是一個客戶端鏈接

 

  • 操做:
    • 值的設置和獲取,能夠參考redis的命令,redis模塊中的對應功能的函數名基本與redis中的一致
    • 【注意默認狀況下,設置的值或取得的值都爲bytes類型,若是想改成str類型,須要在鏈接時添加上decode_responses=True】
    • 設置值:
      • redis中set()  ==>r.set()
      • redis中setnx()  ==>r.set()
      • redis中setex() ==>r.setex()
      • redis中setbit()  ==>r.setbit()
      • redis中mset()  == > r.mset()
      • redis中hset()  ==>r.hset()
      • redis中sadd() == >r.sadd()
      • 其餘。。。基本redis的命令名與redis模塊中的函數名一致
    • 獲取:
      • redis中get() ==》r.get()
      • redis中mget() ==》r.mget()
      • redis中getset() ==》r.getset()
      • redis中getrange() ==》r.getrange()
      • 其餘。。。基本redis的命令名與redis模塊中的函數名一致

     

 

若是想要了解更多redis命令,能夠參考個人另一篇博文:redis

一文學redis操做(記錄向)<點擊便可跳轉>

 

import redis
r=redis.Redis(host='localhost',port=6379,decode_responses=True)
# r=redis.StrictRedis(host='localhost',port=6379)

r.set('key','value')
value=r.get('key')
# print(type(value))
print(value)
r.hset('info','name','lilei')
r.hset('info','age','18')
print(r.hgetall('info'))
r.sadd('course','math','english','chinese')
print(r.smembers('course'))
 

管道:

通常狀況下,執行一條命令後必須等待結果才能輸入下一次命令,管道用於在一次請求中執行多個命令。app

 

  • 參數介紹:
    • transaction:指示是否全部的命令應該以原子方式執行。

 

import redis,time

r=redis.Redis(host="localhost",port=6379,decode_responses=True)

pipe=r.pipeline(transaction=True)

pipe.set('p1','v2')
pipe.set('p2','v3')
pipe.set('p3','v4')
time.sleep(5)
pipe.execute()

 


事務:

python中可使用管道來代替事務:函數

 

  • 補充:監視watch:pipe.watch()

 

import redis,time
import redis.exceptions
r=redis.Redis(host='localhost',port=6379,decode_responses=True)
pipe=r.pipeline()
print(r.get('a'))


try:
    # pipe.watch('a')
    pipe.multi()
    pipe.set('here', 'there')
    pipe.set('here1', 'there1')
    pipe.set('here2', 'there2')
    time.sleep(5)
    pipe.execute()

except redis.exceptions.WatchError as e:
    print("Error")

訂閱\發佈:

 

 

    • 發佈方:
import redis
r=redis.Redis(host="localhost",port=6379,decode_responses=True)

#發佈使用publish(self, channel, message):Publish ``message`` on ``channel``.
Flag=True
while Flag:
    msg=input("主播請講話>>:")
    if len(msg)==0:
        continue
    elif msg=='quit':
        break
    else:
        r.publish('cctv0',msg)
    • 訂閱方:
      • 當訂閱成功後,第一次接收返回的第一個消息是一個訂閱確認消息:image
import redis
r=redis.Redis(host="localhost",port=6379,decode_responses=True)

#發佈使用publish(self, channel, message):Publish ``message`` on ``channel``.
Flag=True
chan=r.pubsub()#返回一個發佈/訂閱對象
msg_reciver=chan.subscribe('cctv0')#訂閱

msg=chan.parse_response()#第一次會返回訂閱確認信息
print(msg)
print("訂閱成功,開始接收------")
while Flag:
    msg=chan.parse_response()#接收消息
    print(">>:",msg[2])#此處的信息格式['消息類型', '頻道', '消息'],因此使用[2]來獲取
相關文章
相關標籤/搜索