您的当前位置:首页正文

使用redis-py的两个类Redis和StrictRedis时遇到的坑

2020-11-09 来源:意榕旅游网

再就是连接池,很多人用Redis的原因是,以前的一些个博客的关于python redis的操作,基本用的时Redis的连接池方式。 其实StrictRedis也是支持的。

Redis的连接池的方法:

pool = redis.ConnectionPool(host='localhost', port=6379, db=0)
r = redis.Redis(connection_pool=pool)

StrictRedis的连接池的实现方式:

In [4]: pool = redis.ConnectionPool(host='127.0.0.1', port=6379)
In [5]: r = redis.StrictRedis(connection_pool=pool)

看下官方的创建redis的时候,都可以添加什么参数。

class redis.StrictRedis(host='localhost', port=6379, db=0, password=None, socket_timeout=None, connection_pool=None, charset='utf-8', errors='strict', decode_responses=False, unix_socket_path=None)
Implementation of the Redis protocol.
This abstract class provides a Python interface to all Redis commands and an implementation of the Redis protocol.
Connection and Pipeline derive from this, implementing how the commands are sent and received to the Redis server

另外的再说下redis的对于有些编码入库的问题,redis的连接附加的参数里面,默认编码是utf-8,但是如果你非要用GBK那就需要指明你的chardet和decode_responses为True 。

class redis.StrictRedis (host='localhost', port=6379, db=0, password=None, socket_timeout=None,connection_pool=None, charset='GBK ' , errors='strict', decode_responses=True)


嗯,剩下的就没什么了 。以后要好好的看文档哈。

显示全文