레디스 트랜잭션 However, RedisTemplate is not guaranteed to run all the operations in the transaction with the same connection. Read-only commands, such as KEYS, are piped to a fresh (non-thread-bound) RedisConnection to allow reads. Write commands are queued by RedisTemplate and applied upon commit. 레디스는 multi, exec, and discard commands로 트랜잭션을 제공합니다. 위의 명령은 스프링에서 RedisTemplate을 이용해 실행할 수 있습니다. 하지만 Re..