国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

區分Python的redis客戶端:hiredis、hiredis-py、redis-py

Hanks10100 / 3301人閱讀

摘要:由于學習實戰用的是,需要按的客戶端庫。提供兩個類,和。還寫了一個版本的即。使用可以使得客戶端解析服務端響應內容的速度提升倍。而且當執行檢索多條數據時性能更顯著,如等。

由于學習《Redis實戰》用的是Python,需要按Python的redis客戶端庫。被幾個庫搞得有點暈,在此區分一下。

區分hiredis、hiredis-py、redis-py

redis官網Github:https://github.com/redis,這里會看到兩個項目:

hiredis --> 是一個C語言的redis客戶端庫

hiredis-py --> 是Python語言包裝了hiredis的redis客戶端庫

Andy McCurd的Github:https://github.com/andymccurdy,這里會看到一個項目:

redis-py --> 是一個Python語言的redis客戶端庫

因此,hiredis-pyredis-py都是Python語言的庫,兩者沒有直接關系。
安裝方法:

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

Python文件中引入方法:

redis-py和hiredis-py的聯系

redis-py的 文檔 中可以看到這么一段內容:

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服務器端響應的內容。redis-py提供兩個parser類,PythonParser和HiredisParser。如果你已經安裝了hiredis模塊,redis-py默認會嘗試使用HiredisParser,否則會使用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是一個C語言的庫,是由Redis核心團隊維護的。Pieter Noordhuis還寫了一個Python版本的Hiredis(即hireids-py)。使用Hiredis可以使得redis客戶端解析服務端響應內容的速度提升10倍。而且當執行檢索多條數據時性能更顯著,如LRANGESMEMBERS等。

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

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

$ pip install hiredis
or
$ easy_install hiredis

因此,安裝redis-py同時安裝hiredis-py,使用redis-py的時候會提升性能

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/40854.html

相關文章

  • CentOS安裝Python3

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

    plus2047 評論0 收藏0
  • Redis-py官方文檔翻譯

    摘要:采取兩種實現命令其一類盡量堅持官方語法,但是以下除外沒有實現,應該是線程安全的原因。線程安全性是線程安全的。由于線程安全原因,不提供實現,因為它會導致數據庫的切換。 官網:https://github.com/andymccurd...當前版本:2.10.5注:這不是完整翻譯,只提取了關鍵信息。省略了部分內容,如lua腳本支持。 pip install redis pip instal...

    Alfred 評論0 收藏0

發表評論

0條評論

最新活動
閱讀需要支付1元查看
<