摘要:
1. Redis事务 Redis的单条命令是保证原子性的,但是redis事务不能保证原子性 Redis事务没有隔离级别的概念 Redis单条命令是保证原子性的,但是事务不保证原子性! Redis事务本质:一组命令的集合。 队列 set set set 执行 事务中每条命令都会被序列化,执行过程中按顺 阅读全文
摘要:
1、修改redis的配置文件redis.conf cd /usr/local/bin/myconfig # redis.conf路径 vim redis.conf 注释掉 bind 127.0.0.1 或者改为 bind 0.0.0.0 将daemonize no 改成 daemonize yes 阅读全文