回到顶部

阅读目录

Python 与 redis 交互取出数据类型是 bytes 时,如何直接取出 str 数据类型

运行代码:(存 str 类型,得 bytes 类型,这是由于 Python3 与 redis 交互的驱动的问题,Python2 取出来的就是 str 类型的)

[root@VM_2_29_centos ~]# workon
blog
Joyo
testdata
[root@VM_2_29_centos ~]# workon Joyo
(Joyo) [root@VM_2_29_centos ~]# python
[root@VM_2_29_centos ~]# python3
Python 3.6.4 (default, Mar 16 2018, 22:27:18) 
[GCC 4.8.5 20150623 (Red Hat 4.8.5-16)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>>
>>> from redis import *
>>> sr = StrictRedis(host='localhost', port=6379, db=0)
>>> sr
StrictRedis<ConnectionPool<Connection<host=localhost,port=6379,db=0>>>
>>> res = sr.set("name", "python")
>>> print(res)
True
>>> res1 = sr.get("name")
>>> print(res1)
b'python'
>>>

修改连接配置参数即可直接得到 str :(增加 decode_responses=True)

>>> sr1 = StrictRedis(host='localhost', port=6379, db=0, decode_responses=True)
>>> sr1
StrictRedis<ConnectionPool<Connection<host=localhost,port=6379,db=0>>>
>>> res2 = sr1.set("name3","python3")
>>> print(res2)
True
>>> res3 = sr1.get("name3")
>>> print(res3)
python3
>>>

 

 

^_^
请喝咖啡 ×

文章部分资料可能来源于网络,如有侵权请告知删除。谢谢!

前一篇: Fiddler 请求超时的 Session 背景色 显示成 红色
下一篇: Fiddler 在列表中显示图片尺寸
captcha