资讯专栏INFORMATION COLUMN

区分Python的redis客户端:hiredis、hiredis-py、redis-py

Hanks10100 / 3085人阅读

摘要:由于学习实战用的是,需要按的客户端库。提供两个类,和。还写了一个版本的即。使用可以使得客户端解析服务端响应内容的速度提升倍。而且当执行检索多条数据时性能更显著,如等。

由于学习《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的时候会提升性能

文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。

转载请注明本文地址:https://www.ucloud.cn/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元查看
<