亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python實現與redis交互的方法

發布時間:2020-08-01 11:45:53 來源:億速云 閱讀:134 作者:小豬 欄目:開發技術

這篇文章主要講解了python實現與redis交互的方法,內容清晰明了,對此有興趣的小伙伴可以學習一下,相信大家閱讀完之后會有幫助。

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操作(記錄向)<點擊即可跳轉>

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'))

管道:

一般情況下,執行一條命令后必須等待結果才能輸入下一次命令,管道用于在一次請求中執行多個命令。

  • 參數介紹:
    • 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)
    • 訂閱方:
      • 當訂閱成功后,第一次接收返回的第一個消息是一個訂閱確認消息:python實現與redis交互的方法
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]來獲取

看完上述內容,是不是對python實現與redis交互的方法有進一步的了解,如果還想學習更多內容,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

子长县| 剑阁县| 深州市| 勐海县| 江城| 象州县| 富源县| 高青县| 盖州市| 班戈县| 余姚市| 天柱县| 和龙市| 丘北县| 奉贤区| 无棣县| 临沧市| 宾川县| 丹凤县| 吴桥县| 南通市| 绍兴县| 黄山市| 商水县| 宁国市| 汪清县| 昌平区| 边坝县| 牟定县| 上犹县| 福安市| 额济纳旗| 彩票| 德江县| 信丰县| 若羌县| 上思县| 漳浦县| 息烽县| 辉南县| 垫江县|