Summary of Redis learning notes
1. Redis transaction
1.1 role of redis transaction
Redis transaction is a separate isolation operation. All commands in the transaction will be serialized and executed sequentially (because of single thread + IO multiplexing). During the execution of the transaction, it will not be interrupted by the command request sent by other client ...
Added by gdure on Thu, 17 Feb 2022 22:48:32 +0200
Redis (persistence principle, security policy, expiration deletion & memory obsolescence policy, performance pressure measurement, highly available Redis Cluster)
Redis (persistence principle, security policy, expiration deletion & memory obsolescence policy, performance pressure measurement, highly available Redis Cluster)
1. Persistence principle
Persistence: Redis is an in memory database, and all data is stored in memory. In order to avoid permanent loss of data caused by process exit, it i ...
Added by SnakeFox on Fri, 14 Jan 2022 18:59:44 +0200