Redis for Windows 安装与使用指南
# 安装 Redis for Windows
1. 下载最新的 Redis for Windows 压缩包:
https://github.com/MicrosoftArchive/redis/releases
2. 解压缩到你选择的目录,例如 C:\redis。
3. 打开命令提示符或 PowerShell 并导航到 Redis 目录。
4. 运行 `redis-server.exe` 来启动 Redis 服务器。
# 使用 Redis for Windows
1. 安装 Redis 客户端库,例如使用 Python:
```shell
pip install redis
使用 Python 连接并操作 Redis 服务器:
import redis # 创建 Redis 连接对象 r = redis.Redis(host='localhost', port=6379, db=0) # 设置键值对 r.set('key', 'value') # 获取键对应的值 value = r.get('key') print(value) # 输出 b'value'
注意事项
- 如果你想让 Redis 作为 Windows 服务运行,可以使用
redis-server --service-install redis.windows.conf
命令安装服务。 - 使用
redis-cli.exe
可以启动 Redis 客户端。
以上是一个基本的安装和使用 Redis for Windows 的指南。这里提供了在 Windows 系统上安装 Redis 的基本步骤,并展示了如何使用 Python 客户端与 Redis 服务器交互。
评论已关闭