帮我写一段python连接redis的语句
时间: 2024-01-29 20:03:15 浏览: 65
python使用S3 select查询数据放入redis缓存
当然,以下是连接Redis数据库的Python语句:
```
import redis
# 连接Redis服务器
r = redis.Redis(host='localhost', port=6379, db=0)
# 使用Redis
r.set('name', 'ChitChat')
print(r.get('name'))
```
希望这对你有所帮助。
阅读全文