成人国产在线小视频_日韩寡妇人妻调教在线播放_色成人www永久在线观看_2018国产精品久久_亚洲欧美高清在线30p_亚洲少妇综合一区_黄色在线播放国产_亚洲另类技巧小说校园_国产主播xx日韩_a级毛片在线免费

資訊專欄INFORMATION COLUMN

區(qū)分Python的redis客戶端:hiredis、hiredis-py、redis-py

Hanks10100 / 3317人閱讀

摘要:由于學(xué)習(xí)實(shí)戰(zhàn)用的是,需要按的客戶端庫(kù)。提供兩個(gè)類,和。還寫了一個(gè)版本的即。使用可以使得客戶端解析服務(wù)端響應(yīng)內(nèi)容的速度提升倍。而且當(dāng)執(zhí)行檢索多條數(shù)據(jù)時(shí)性能更顯著,如等。

由于學(xué)習(xí)《Redis實(shí)戰(zhàn)》用的是Python,需要按Python的redis客戶端庫(kù)。被幾個(gè)庫(kù)搞得有點(diǎn)暈,在此區(qū)分一下。

區(qū)分hiredis、hiredis-py、redis-py

redis官網(wǎng)Github:https://github.com/redis,這里會(huì)看到兩個(gè)項(xiàng)目:

hiredis --> 是一個(gè)C語(yǔ)言的redis客戶端庫(kù)

hiredis-py --> 是Python語(yǔ)言包裝了hiredis的redis客戶端庫(kù)

Andy McCurd的Github:https://github.com/andymccurdy,這里會(huì)看到一個(gè)項(xiàng)目:

redis-py --> 是一個(gè)Python語(yǔ)言的redis客戶端庫(kù)

因此,hiredis-pyredis-py都是Python語(yǔ)言的庫(kù),兩者沒(méi)有直接關(guān)系。
安裝方法:

安裝hiredis-py: pip install hiredis
安裝redis-py: pip install redis

Python文件中引入方法:

redis-py和hiredis-py的聯(lián)系

redis-py的 文檔 中可以看到這么一段內(nèi)容:

Parser classes provide a way to control how responses from the Redis server are parsed. redis-py ships with two parser classes, the PythonParser and the HiredisParser. By default, redis-py will attempt to use the HiredisParser if you have the hiredis module installed and will fallback to the PythonParser otherwise.

譯:Parser類可以控制如何解析Redis服務(wù)器端響應(yīng)的內(nèi)容。redis-py提供兩個(gè)parser類,PythonParser和HiredisParser。如果你已經(jīng)安裝了hiredis模塊,redis-py默認(rèn)會(huì)嘗試使用HiredisParser,否則會(huì)使用PythonParser。

Hiredis is a C library maintained by the core Redis team. Pieter Noordhuis was kind enough to create Python bindings. Using Hiredis can provide up to a 10x speed improvement in parsing responses from the Redis server. The performance increase is most noticeable when retrieving many pieces of data, such as from LRANGE or SMEMBERS operations.

譯:Hiredis是一個(gè)C語(yǔ)言的庫(kù),是由Redis核心團(tuán)隊(duì)維護(hù)的。Pieter Noordhuis還寫了一個(gè)Python版本的Hiredis(即hireids-py)。使用Hiredis可以使得redis客戶端解析服務(wù)端響應(yīng)內(nèi)容的速度提升10倍。而且當(dāng)執(zhí)行檢索多條數(shù)據(jù)時(shí)性能更顯著,如LRANGE、SMEMBERS等。

Hiredis is available on PyPI, and can be installed via pip or easy_install just like redis-py.

譯:Hiredis可以在PyPI上找到,你可以使用easy_install或pip來(lái)安裝(hiredis-py)。

$ pip install hiredis
or
$ easy_install hiredis

因此,安裝redis-py同時(shí)安裝hiredis-py,使用redis-py的時(shí)候會(huì)提升性能

文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請(qǐng)注明本文地址:http://systransis.cn/yun/40854.html

相關(guān)文章

  • CentOS安裝Python3

    摘要:安裝官網(wǎng)下載源碼,如解壓進(jìn)入解壓后目錄安裝依賴的模塊在目錄下執(zhí)行配置檢查在目錄下執(zhí)行安裝安裝是我學(xué)習(xí)實(shí)戰(zhàn)時(shí)用到的的客戶端庫(kù)。 安裝Python3 1)官網(wǎng)下載源碼,如:Python-3.6.2.tgz2)解壓:tar -xzvf Python-3.6.2.tgz3)進(jìn)入解壓后目錄:cd Python-3.6.24)安裝pip3依賴的模塊:yum install -y openssl o...

    plus2047 評(píng)論0 收藏0
  • Redis-py官方文檔翻譯

    摘要:采取兩種實(shí)現(xiàn)命令其一類盡量堅(jiān)持官方語(yǔ)法,但是以下除外沒(méi)有實(shí)現(xiàn),應(yīng)該是線程安全的原因。線程安全性是線程安全的。由于線程安全原因,不提供實(shí)現(xiàn),因?yàn)樗鼤?huì)導(dǎo)致數(shù)據(jù)庫(kù)的切換。 官網(wǎng):https://github.com/andymccurd...當(dāng)前版本:2.10.5注:這不是完整翻譯,只提取了關(guān)鍵信息。省略了部分內(nèi)容,如lua腳本支持。 pip install redis pip instal...

    Alfred 評(píng)論0 收藏0

發(fā)表評(píng)論

0條評(píng)論

最新活動(dòng)
閱讀需要支付1元查看
<