windows下的redis是由Microsoft提供的,github下载链接如下:
https://github.com/MicrosoftArchive/redis/tags
运行redis只需要双击启动redis-server.exe 运行服务即可
之后需要使用redis的时候,都需要先打开这个exe
若报# Warning: no config file specified, using the defau
lt config. In order to specify a config file use redis-server.exe /path/to/redis
.conf,则在启动redis指定配置文件即可,启动命令:redis-server.exe redis.windows.conf
有时候还会遇到有关端口6379的错误。
只要把redis.windows.conf里面的#bind 127.0.0.1的“#”去掉即可以。
如果发生报错 Creating Server TCP listening socket 127.0.0.1:6379: bind: No error
那么执行:
redis-cli.exe
shutdown
exit
redis-server redis.windows.conf
看到如下图所示的大方块则表示运行成功
想要在python3中操作redis,需要先安装redis模块
pip install redis
import redis #python中操作redis if __name__ == "__main__": r = redis.Redis(host="localhost",port=6379,decode_responses=True) r.set("name","a") print(r.get("name"))
如果本文对你有帮助,欢迎打赏本站