您好,登錄后才能下訂單哦!
這篇文章主要講解了python實現與redis交互的方法,內容清晰明了,對此有興趣的小伙伴可以學習一下,相信大家閱讀完之后會有幫助。
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命令,可以參考我的另外一篇博文:
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'))
一般情況下,執行一條命令后必須等待結果才能輸入下一次命令,管道用于在一次請求中執行多個命令。
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中可以使用管道來代替事務:
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)
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交互的方法有進一步的了解,如果還想學習更多內容,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。