Redis代码——Python篇
Posted 哈撒king
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Redis代码——Python篇相关的知识,希望对你有一定的参考价值。
需要安装的库:redis
import redis # 连接数据库 r = redis.StrictRedis(host="localhost", port=6379, password="密码") # 方法1:根据数据类型的不同,调用响应的方法 # 写 r.set("p1", "good") # 读 print(r.get("p1"))
以上是关于Redis代码——Python篇的主要内容,如果未能解决你的问题,请参考以下文章