Redis
文章平均质量分 52
乐事原味~
这个作者很懒,什么都没留下…
展开
-
Redis:Ubuntu启动项目,redis报错
redis.exceptions.ResponseError: MISCONF Redis is configured to save RDB snapshots, but it is currently not able to persist on disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if R.原创 2021-08-31 11:01:48 · 370 阅读 · 0 评论 -
Python3:与redis交互,保存的是字符串,取出来是bytes类型
原因:在python3中redis连接包读取数据默认返回byte类型。存进去的是字符串类型的数据,取出来却是字节类型的。 Python2取出来的就是字符串类型的。import platformimport redisif "inux" in platform.system(): print("检测到是服务器环境,启动redis内网链接") IP = "xxx.xx.x.xx" PORT = 6379else: IP = "xxx.x...原创 2020-08-03 21:26:53 · 1552 阅读 · 0 评论 -
RedisPool操作Redis,工具类实例
redis.properties配置文件内容redis.pool.maxActive=100redis.pool.maxIdle=20redis.pool.maxWait=3000redis.pool.testOnBorrow=falseredis.pool.testOnReturn=falseredis.ip=127.0.0.1redis.port=6379redis.po...转载 2019-02-14 20:43:03 · 691 阅读 · 0 评论 -
Redis:设置 AUTH 密码
1、临时密码(关闭redis,密码失效)(1)首先进入redis,如果没有开启redis则需要先开启:命令行启动:其中a、b一起启动,c则另一命令行启动a、.\redis-server.exe 服务启动b、.\redis.windows-service.conf 服务配置c、.\redis-cli 客户端(2)查看当前redis有没有设置密码:127.0....原创 2019-06-04 14:37:28 · 6088 阅读 · 1 评论