最新回答 / 杨元卿
r = redis. Redis (host='127. 0.0.1 ',port=6379,encoding='gbk' )若尝试了redis-cli --raw还是不能显示正常中文的话回头设置encoding=‘gbk’,在进入redis-cli --raw,就可以正常显示中文了
2018-05-13
需要注释掉redis.conf 文件中的 bind 127.0.0.1
连接的时候需关闭防火墙,命令如下 sudo service iptables stop ,需要注释掉bind127.0.0.1 ,设置protected-mode为NO。
可还是 redis.clients.jedis.exceptions.JedisConnectionException: java.net.SocketTimeoutException: connect timed out
连接的时候需关闭防火墙,命令如下 sudo service iptables stop ,需要注释掉bind127.0.0.1 ,设置protected-mode为NO。
可还是 redis.clients.jedis.exceptions.JedisConnectionException: java.net.SocketTimeoutException: connect timed out
2018-05-12
老是讲的挺好的,基本每个命令都讲解了,挺详细的,真的是我在immoc上看过的最好的视频,后续可以再拓展下啊
2018-05-11
Window 下安装
下载地址:https://github.com/MSOpenTech/redis/releases
Linux 下安装
下载地址:http://redis.io/download
mac 下安装
1、执行 brew install redis
2、启动 redis,可以使用后台服务启动 brew services start redis。
或者直接启动:redis-server /usr/local/etc/redis.conf
下载地址:https://github.com/MSOpenTech/redis/releases
Linux 下安装
下载地址:http://redis.io/download
mac 下安装
1、执行 brew install redis
2、启动 redis,可以使用后台服务启动 brew services start redis。
或者直接启动:redis-server /usr/local/etc/redis.conf
2018-05-03
最赞回答 / Gavin_Alison
事务的隔离级别中读未提交,读已提交,可重复读,串行化,老师说了,redis使用的是串行化隔离机制,串行化机制规定事务的提交必须有序的,如果一个事务打开了,未提交事务或者回滚事务,另外开启一个事务的话,必须等待前一个事务处理完数据,才能处理数据,否则后面这个事务不能处理数据,所以后提交的数据时会出现锁为获取或者未获取锁无法提交等等错误。
2018-04-29