Tag:Redis transaction
-
Time:2019-8-2
We all know that redis pursues simplicity, speed and efficiency. In this case, we refuse to support the windows platform. When we learn SQL server, we know that transactions are still a relatively complex thing. So if we copy redis, of course redis is not such a simple and fragmentary thing, but what? Transactions are […]
-
Time:2019-3-21
Redis Watch command Effect: Used to monitor one (or more) keys. If this (or these) keys are changed by other commands before the transaction is executed, the transaction will be interrupted. Usage: redis 127.0.0.1:6379> WATCH key1 key2 OK Redis Unwatch command Effect: Used to cancel the WATCH command to monitor all keys. Usage: redis 127.0.0.1:6379> […]