redis
在mac
电脑的配置1、直接使用brew
安装
brew install redis
2、设置开机启动(注意是使用上面这种方式安装的)
launchctl load ~/Library/LaunchAgents/homebrew.mxcl.redis.plist
3、启动redis
redis-server
4、测试安装是否成功(命令窗口中输入)
redis-cli
5、设置密码参考地址
CONFIG SET requirepass "123456"
redis
的操作传送门
python
连接redis
的操作1、安装包
pip3 install redis
2、连接测试
from redis import StrictRedis if __name__ == "__main__": # 加上decode_responses=True,写入的键值对中的value为str类型,不加这个参数写入的则为字节类型(直白点就是中文乱码) r = StrictRedis(host='localhost', port=6379, db=0, decode_responses=True, password="123456") r.set('name', '哈哈') print(r.get('name'))